继续浏览精彩内容
慕课网APP
程序员的梦工厂
打开
继续
感谢您的支持,我会继续努力的
赞赏金额会直接到老师账户
将二维码发送给自己后长按识别
微信支付
支付宝支付

python小程序

慕UI0519722
关注TA
已关注
手记 296
粉丝 85
获赞 267

1.计算闰年:
def runnian(i):
if((i%4==0 and i%100!=0) or i%400==0):
return True
else:
return False
i = int(raw_input ('year: \n'))
print runnian(i)

2.质数:
#!/usr/bin/python

-- coding: UTF-8 --

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,阅读手记
0人推荐
发表评论
随时随地看视频慕课网APP