摘要:
例如 你写了代码创建一个文件 在终端vim test.py然后写入代码print “hello world"接着运行代码python test.py会输出hello world这个就是系统默认用了python2 来运行python代码如果想用python3来... 阅读全文
摘要:
例如 你写了代码创建一个文件 在终端vim test.py然后写入代码print “hello world"接着运行代码python test.py会输出hello world这个就是系统默认用了python2 来运行python代码如果想用python3来... 阅读全文
摘要:
ImportError: No module named ‘_tkinter’, please install the python3-tk package这个问题的原因是使用的python3环境内没有tkinter需要安装tkintersudo apt-g... 阅读全文
摘要:
ImportError: No module named ‘_tkinter’, please install the python3-tk package这个问题的原因是使用的python3环境内没有tkinter需要安装tkintersudo apt-g... 阅读全文
摘要:
下面的代码print "hello world"会出现下面的错误SyntaxError: Missing parentheses in call to 'print'因为写的代码和系统中的python不是一个版本的。python2系列可以支持print "h... 阅读全文
摘要:
下面的代码print "hello world"会出现下面的错误SyntaxError: Missing parentheses in call to 'print'因为写的代码和系统中的python不是一个版本的。python2系列可以支持print "h... 阅读全文
摘要:
首先默认安装了virtualenv创建python3虚拟环境 your-name@node-name:~/virtual_env$ virtualenv -p /usr/bin/python3 py3env接着会输出Already using interpr... 阅读全文
摘要:
首先默认安装了virtualenv创建python3虚拟环境 your-name@node-name:~/virtual_env$ virtualenv -p /usr/bin/python3 py3env接着会输出Already using interpr... 阅读全文
摘要:
Python 类似 SyntaxError: Non-ASCII character '\xc3' in file产生这个问题的原因:python 的默认编码文件是ACSII,而编辑器将文件保存为UTF-8格式的,只要文件中存在非ACSII 例如中文,就会产... 阅读全文
摘要:
Python 类似 SyntaxError: Non-ASCII character '\xc3' in file产生这个问题的原因:python 的默认编码文件是ACSII,而编辑器将文件保存为UTF-8格式的,只要文件中存在非ACSII 例如中文,就会产... 阅读全文
摘要:
#include#include#include#include#include#include#includeusing namespace std;#define MAXN 35#define MIDX 10#define MIDY 40#define ... 阅读全文
摘要:
#include#include#include //suiji#include //SLEEP函数struct Player //玩家结构体,并初始化player{char name[21];int attack;int defense;int healt... 阅读全文
摘要:
#include#include#include#include using namespace std;struct pai{int paifu;int huase;int yanse;int dianshu;int leixing;int changdu... 阅读全文