输入
输入多个整数a,b,c=map(int, input().split())
一个时a,=map(int,input().split())
输出
print()
自带空格分隔
end =
默认等于
文件输入输出
file = open(filename,mode)
其中文件如果不再当前目录,可以用folder1/...
相对路径,或/folder1/..
绝对路径
file.read()
读整个文件,各行的字符串用连在一起不加分隔符(注意每行行末有换行符,而最后一行不一定有)
file.readline()
读入一行. 如果到了末尾,读入返回''
。其中not '' = True
file.readlines()
读入所有行,存入list
file.write(str)
不自动换行
file.close()
或使用with open(filename,mode) as file:
嵌套