用户:ACT查看:0 回复:0 评论:0 创建时间:2019-11-29T20:03:00
【作品展示】

【作品介绍】
我是萌新
【作品源代码】
import time
#开始进入Python的世界
i = 1
for __count in range(5):
print('Hello')
continue
print('hi')
for i in range(5, 10):
print(i)
break
print([1, 1])
print({'number': 1})
print(True)
print('Hello', 'word')
print(input())
print(input('你的名字?'))
time.sleep(1)
print(time.ctime())
if (3 + 5 == 8):
print('88')
for i in 'Hello':
print(i)
while (i == 7):
print('hello,codemao')
if (i == 7):
print('I am ACT.')
elif (i == 6):
print('hello,ACT.')
else:
print('hello,我的朋友')
【提示】
部分含有Python第三方库相关内容的作品,在海龟编辑器网页端无法运行哦!如遇到这种情况,可以打开下面的链接,下载海龟编辑器客户端:
https://python.codemao.cn