码迷,mamicode.com
首页 >  
搜索关键字:recent    ( 1003个结果
《Python核心编程》P21输入数值字符串→转整型
>>> num=input('n:')n:1234>>> print('sdf:',n)Traceback (most recent call last): File "", line 1, in print('sdf:',n)NameError: name 'n' is not defi...
分类:编程语言   时间:2015-06-29 13:08:03    阅读次数:212
Codeforces Round #225 (Div. 1) C. Propagating tree dfs序+树状数组
C. Propagating treeTime Limit: 20 SecMemory Limit: 256 MB题目连接http://codeforces.com/contest/383/problem/CDescriptionIahub likes trees very much. Recent...
分类:编程语言   时间:2015-06-26 12:24:25    阅读次数:228
Python动态导入模块
如果导入的模块不存在,Python解释器会报 ImportError 错误: >>> import something Traceback (most recent call last): File "", line 1, in ImportError: No module named something 有的时候,两个不同的模块提供了相同的功能,比如 StringIO 和 cStr...
分类:编程语言   时间:2015-06-26 09:24:49    阅读次数:149
cms.auth.json在结尾多写了一个逗号不识别
Traceback (most recent call last): ? File "manage.py", line 90, in <module> ??? startup = importlib.import_module(edx_args.startup) ? File "/usr/lib/python2.7/importlib/__init__.py", line 37, ...
分类:Web程序   时间:2015-06-19 12:02:19    阅读次数:176
OSError: libev.so.4: cannot open shared object file: No such file or directory
Ubuntu12.04 下使用pyev 模块,但是运行sudo python setup.py install后却提示出现以下错误: Traceback (most recent call last):   File "setup.py", line 59, in     check_version(libev_version(), min_libev_version, "libev")...
分类:其他好文   时间:2015-06-16 19:23:20    阅读次数:292
IntelliJ IDEA使用
调整背景, ideaVim跳转至声明、实现、退回来?+B 、?+Alt+B 、 ? + alt + <-control + J 函数原型提示Alt + F7: Find Usages?+O: Open class? + E:Recent Files? + W: Close Tab?+Shift +T...
分类:其他好文   时间:2015-06-15 10:47:44    阅读次数:92
怎么样putty打开图形化管理工具,在终端上
有时需要在putty这种图形终端开放的图形化管理工具将出现以下错误:[root@node2 ~]# Traceback (most recent call last):File "/usr/share/virt-manager/virt-manager.py", line 383, in main(...
分类:其他好文   时间:2015-06-13 08:37:13    阅读次数:281
ubunte中用ibus-setup安装中文输入法
(process:2553): Gtk-WARNING **: Locale not supported by C library. Using the fallback 'C' locale. Traceback (most recent call last): File "/usr/share/ibus/setup/main.py", line 582, in locale.setlocale(locale.LC_ALL, '') File "/usr/lib/...
分类:其他好文   时间:2015-06-10 08:57:17    阅读次数:197
[3 Jun 2015 ~ 9 Jun 2015] Deep Learning in arxiv
arXiv is an e-print service in the fields of physics, mathematics, computer science, quantitative biology, quantitative finance and statistics. There'll be lots of papers in advance. Here's some recent papers which is important or interesting....
分类:其他好文   时间:2015-06-09 17:27:18    阅读次数:128
python int函数转换浮点型字符串的坑???
python中的int函数可以将数字或字符串转换为整型数字类型,具体功能就不提了最近发现一个问题,对于字符串'1.1'之类的,int转换的时候会报异常,这是为什么,个人感觉直接转换成1不就行了,干嘛还不能转换了>>> int('1.1')Traceback (most recent call las...
分类:编程语言   时间:2015-06-04 19:19:32    阅读次数:232
1003条   上一页 1 ... 81 82 83 84 85 ... 101 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!