码迷,mamicode.com
首页 > 其他好文 > 详细

初来乍到,写个99乘法表,试试播客效果

时间:2018-02-07 12:09:48      阅读:125      评论:0      收藏:0      [点我收藏+]

标签:alt   inf   bsp   div   效果图   class   col   log   .com   

看了一下Python的最基本的语法,写了一个九九乘法表。具体代码如下:

 1 first = 1
 2 second = 1
 3 
 4 while (first <= 9):
 5     second = 1
 6     while (second <= first):
 7         print(str(second)+"*"+str(first)+"="+str(first*second), end="\t")
 8         second += 1
 9     print()
10     first += 1

执行效果图如下:

技术分享图片

 

初来乍到,写个99乘法表,试试播客效果

标签:alt   inf   bsp   div   效果图   class   col   log   .com   

原文地址:https://www.cnblogs.com/walkcreaker/p/8425502.html

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