摘要:
阅读全文
posted @ 2019-04-22 17:17
云帆书海
阅读(144)
评论(0)
推荐(0)
摘要:
阅读全文
posted @ 2019-04-18 16:55
云帆书海
阅读(135)
评论(0)
推荐(0)
摘要:
# 开发团队:云帆科技# 开发人员:HiWin10# 开发时间: 2019/4/15 16:38# 文件名称: 四则运算.PY# 开发工具: PyCharmx = int(input("first:"))o = input("oprator:")y= int(input("second:"))opr 阅读全文
posted @ 2019-04-15 16:48
云帆书海
阅读(91)
评论(0)
推荐(0)
摘要:
# -*- utf-8-*- print(u'打印九九乘法表') #u 代表unicode 字符串for x in range(1,10): for y in range(1,x+1): print("{}*{}={}\t".format(y,x,y*x),end='') #end=''表示不进行换 阅读全文
posted @ 2019-04-14 15:11
云帆书海
阅读(110)
评论(0)
推荐(0)