Python
文章平均质量分 55
LiuXudongHnu
这个作者很懒,什么都没留下…
展开
-
Mac OS下,终端下使用pip install *进行到导包后,Eclipse中仍然出现Unresolved错误
错误原因:eclipse中找不到已经下载的包解决方法:1、在终端使用命令查看自己的Python版本,打开Eclipse中的偏好设置,打开Python Interpreter。2、选择右侧的New Folder,将pip install *的现在路径放入其中。一般情况下如下图所示原创 2017-10-20 10:30:43 · 721 阅读 · 0 评论 -
Python函数参数中*与**的用法和区别
#可变参数def print_paras(fpara,*nums,**words): print ("fpara:"+str(fpara)) print ("nums:"+str(nums)) print ("words:"+str(words))print print_paras("Hello",1,3,5,7,word="pyhton",another_word=原创 2017-10-22 13:00:30 · 2981 阅读 · 0 评论 -
Python2中input出现的name “xxx” is not defined问题原因及解决办法
# coding=UTF-8'''Created on 2017年10月22日@author: Dyna'''str_1 = input("Enter a string:")str_2 = input("Enter another string:")print ("str_1 is:"+str_1+" str_2 is:"+str_2)print "str_1 is {} ,s原创 2017-10-22 15:16:55 · 24609 阅读 · 0 评论