标签:写文件 app == read input close def ret usr
1.计算闰年:2.质数:
#!/usr/bin/python
num=[];
i=2
for i in range(2,100):
j=2
for j in range(2,i):
if(i%j==0):
break
else:
num.append(i)
print(num)
读写文件:
#--coding:utf-8
f=open(‘a.txt‘,‘w+‘)
f.write("hello\n")
a=f.tell()
print a
f=open(‘a.txt‘,‘a‘)
f.close
f=open(‘a.txt‘,‘a+‘)
#f.seek(0)
b=f.read(4)
print b
f.close
标签:写文件 app == read input close def ret usr
原文地址:http://blog.51cto.com/406647516/2062521