1、选中单元格右键单击,然后选择设置单元格格式选项然后会d出设置单元格格式的界面。
2、直接选择自定义分类,在类型里输入10个0即可然后我们回到excel中。
3、然后按回车键。这个时候你会发现单元格中的数字前面补了10位。
webstorm按一下tab直接补全方法如下:
前边加个尖括号可以实现。 或者直接打全也行。Webstorm是一个很牛叉的IDE,现在工作每天都在使用。最近开始用SASS,LESS等来写CSS,而在Webstorm中自带一个File Watchers功能,设置一下即可实时编译SASS,LESS等。
LESS的实时编译很简单,在node平台安装一下即可。而在折腾SASS在Webstorm上的实时编译时花了一点时间。因为按照网上的教程设置都不成功,最后自己把设置改来改去终于成功了。
功能特点:
1、代码补全
WebStorm分析项目,为应用程序中定义的所有方法、 函数、模块、变量和类提供最佳代码补全。 代码辅助是上下文感知的,也可以特定于框架。
2、多个插入符号和选择
具备每个人喜欢的多个插入符号和选择。 同时编辑文件中的多个地方,甚至具备适用于它们的代码补全和动态模板。 通过Alt+点击来选择编辑的地方。 或者,选择当前单词出现的地方并同时编辑。
3、AngularJS
将AngularJS应用的代码辅助带领到更佳阶段。 获得有关默认和自定义指令、控制器和应用程序名称以及数据绑定的代码洞察的代码建议。
以上内容参考:百度百科--webstorm
在Python模式交互下,tab自动补全会提高代码效率,通过以下步骤可以很方便的实现自动补全。1.获取 *** 作目录
[root@liu site-packages]# pythonPython 2.6.6 (r266:84292, Nov 22 2013, 12:16:22)
[GCC 4.4.7 20120313 (Red Hat 4.4.7-4)] on linux2
Type "help", "copyright", "credits" or "license" for more information.>>>import sys>>>sys.path
['', '/usr/lib64/python26.zip', '/usr/lib64/python2.6', '/usr/lib64/python2.6/plat-linux2', '/usr/lib64/python2.6/lib-tk', '/usr/lib64/python2.6/lib-old', '/usr/lib64/python2.6/lib-dynload', '/usr/lib64/python2.6/site-packages', '/usr/lib64/python2.6/site-packages/gtk-2.0', '/usr/lib/python2.6/site-packages']>>>123456789
可以看出,我的工作目录是/usr/lib/python2.6/site-packages/。
2.进入工作目录,编写tab.py补全文件
[root@liu site-packages]# cd /usr/lib/python2.6/site-packages/[root@liu site-packages]# vim tab.py 123
tab.py内容如下,建议粘贴的时候保证格式正确性
1 #!/usr/bin/python
2 # python tab file
3 import sys 4 import readline 5 import rlcompleter 6 import atexit 7 import os 8 # tab completion
9 readline.parse_and_bind('tab: complete') 10 # history file
11 histfile = os.path.join(os.environ['HOME'], '.pythonhistory') 12 try: 13 readline.read_history_file(histfile) 14 except IOError: 15 pass
16 atexit.register(readline.write_history_file, histfile) 17
18 del os, histfile, readline, rlcompleter123456789101112131415161718
3.添加环境变量,使其生效
[root@liu site-packages]# cd [root@liu ~]# vim .bashrc123
在末尾添加一行
export PYTHONSTARTUP=/usr/lib/python2.6/site-packages/tab.py1
4.重读.bashrc文件
source .bashrc1
或者
. .bashrc1
5.测试效果
[root@liu ~]# python
Python 2.6.6 (r266:84292, Nov 22 2013, 12:16:22)
[GCC 4.4.7 20120313 (Red Hat 4.4.7-4)] on linux2
Type "help", "copyright", "credits" or "license" for more information.
>>>import math>>>math.math.__class__( math.acos( math.fsum(math.__delattr__( math.acosh( math.hypot(math.__dict__ math.asin( math.isinf(math.__doc__math.asinh( math.isnan(math.__file__ math.atan( math.ldexp(math.__format__(math.atan2( math.log(math.__getattribute__( math.atanh( math.log10(math.__hash__( math.ceil( math.log1p(math.__init__( math.copysign( math.modf(math.__name__ math.cos( math.pimath.__new__( math.cosh( math.pow(math.__package__math.degrees( math.radians(math.__reduce__(math.e math.sin(math.__reduce_ex__( math.exp( math.sinh(math.__repr__( math.fabs( math.sqrt(math.__setattr__( math.factorial( math.tan(math.__sizeof__(math.floor( math.tanh(math.__str__( math.fmod( math.trunc(math.__subclasshook__( math.frexp(
>>>math.123456789101112131415161718192021222324252627
完成。我一开始一直报错,然后通过排查就是因为tab.py格式不正确。注意其格式。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)