浪子无涯

导航

 

2021年1月14日

摘要: # DATE:2021.1.14 title:turtle模块 import turtle #导入turtle模块'''t = turtle.Pen()for x in range(360): t.forward(x) t.left(59)'''turtle.showturtle() #显示箭头tu 阅读全文
posted @ 2021-01-14 17:51 浪子无涯 阅读(111) 评论(0) 推荐(0)
 
摘要: # DATE:2021.1.14 title:字符集:占位符 %S、%d、%f'''%S=%string 字符型%d=%digit 数字%f=%float 浮点型带小数'''name = input("Name:")age = int(input("age:"))salary = input("sa 阅读全文
posted @ 2021-01-14 14:20 浪子无涯 阅读(347) 评论(0) 推荐(0)