码迷,mamicode.com
首页 > 编程语言 > 详细

用python写一个九九乘法表-2月19日/2018

时间:2018-02-19 18:59:34      阅读:116      评论:0      收藏:0      [点我收藏+]

标签:font   first   round   span   乘法   end   while   back   int()   

first = 1


while first<=9:
  sec=1
  while sec<=first:
    print(str(sec),"x",str(first),"=",first*sec,end="\t")
    sec+=1
  print()
  first+=1

用python写一个九九乘法表-2月19日/2018

标签:font   first   round   span   乘法   end   while   back   int()   

原文地址:https://www.cnblogs.com/bushii/p/8454205.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!