摘要: 输出乘法口诀表 first = 1while first<=9: sec = 1 while sec <= first: print( str(sec)+"*"+ str(first) +"="+str(sec * first), end="\t")#\t制表符,作用是让表格对齐 sec += 1 阅读全文
posted @ 2018-07-04 14:28 bluesky_code 阅读(112) 评论(0) 推荐(0)
摘要: 从今开始,学习python,我希望自己可以有所收获。 阅读全文
posted @ 2018-07-04 11:31 bluesky_code 阅读(83) 评论(0) 推荐(0)