Python3安装和使用 1.安装 Python管方下载地址 选择Customize installation安装,并且勾选Add Python 3.X to PATH. 勾选Documentation.pip.tcl/tk and IDLE.Python test suite.py launcher.for all users. 勾选Associate files with Python.Add Python to environment variable和Create shortcuts 注…
文件读写 一.文件打开 传统方法 >>> f = open('data.txt', 'w') # Make a new file in output mode ('w' is write) >>> f.write('Hello\n') # Write strings of characters to it 6 >>> f.write('world\n') # Return number of items written in Python 3.X 6…
摘要:if语句是用来检查一个条件,如果条件为真(true),我们运行一个语句块(称为IF块),否则(else)运行另一个语句块(else块).else语句是可选的 程序1(将文件保存为if.py): i = 3 x = 1 if i > 0: x = x + 1 print x $python ifDemo.py #运行 程序运行到if的时候,条件为True,所以执行x = x + 1 print x语句没有缩进,那么就是运行if之外 如果第一句改成i不为真时(Flase),x= x + 1既不…