
Lv.1
只是喜欢Python而已……徒弟:程序侯
签名:只是喜欢Python而已…… 徒弟:程序侯
在 【Python作品分享】计算次方【教程贴】 中回复
print(''.join([chr(p) for p ion [119, 97, 116, 101, 114]]))2020-07-08T10:16:44 点赞:0
在 【Python作品分享】5行代码算平闰 中回复
a = int(input('年?'))
print('是' if a % 4 == 0 and a % 100 != 0 or a % 400 == 0 else '不是')2020-07-08T11:59:28 点赞:1
在 【Python作品分享】pygame开发框架【教程贴】 中回复
from pygame import *
init()
screen = display.set_mode((500, 200))
while 1:
if QUIT in [ev.type for ev in event.get()]:
quit()
exit()
display.flip()
2020-07-12T11:37:48 点赞:0
在 【秀代码】随便编的小程序 中回复
a = input()
print(int(a.split("^")[0])**int(a.split("^")[1]))2020-07-12T11:54:42 点赞:0