(1)打印到屏幕:print
(2)读取键盘输入:input/raw_input
#键盘输入
str = raw_input("Please enter:");
print ("你输入的内容是: ", str) str = input("Please enter:");
print ("你输入的内容是: ", str)
(3)打开文件 open 关闭close 读取read
#打开与关闭文件
# 打开一个文件
fo = open("foo.txt", "wb")
print ("文件名: ", fo.name)
print ("是否已关闭 : ", fo.closed)
print ("访问模式 : ", fo.mode)#wb
print ("末尾是否强制加空格 : ", fo.softspace)
# 打开一个文件 不存在就创建
fo = open("foo.txt", "wb")
print ("文件名: ", fo.name)
fo.close() # 打开一个文件
fo = open("foo.txt", "wb")
fo.write( "www.runoob.com!\nVery good site!\n"); # 关闭打开的文件
fo.close() # 打开一个文件
fo = open("foo.txt", "r+")
str = fo.read(10);
print ("读取的字符串是 : ", str)
# 关闭打开的文件
fo.close() # 打开一个文件
fo = open("foo.txt", "r+")
str = fo.read(10);
print ("读取的字符串是 : ", str)
(4)查找位置 定义指针位置
# 查找当前位置
position = fo.tell();
print ("当前文件位置 : ", position) # 把指针再次重新定位到文件开头
position = fo.seek(0, 0);
str = fo.read(10);
print ("重新读取字符串 : ", str)
# 关闭打开的文件
fo.close()
(5)文件重命名和删除
import os # 重命名文件test1.txt到test2.txt。
os.rename( "test1.txt", "test2.txt" ) import os # 删除一个已经存在的文件test2.txt
os.remove("test2.txt")