程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
您现在的位置: 程式師世界 >> 編程語言 >  >> 更多編程語言 >> Python

Python3 9999 multiplication table, research-based learning

編輯:Python
for e in range(1,10): # Definition for Variables in the loop e by :range() Function generation 1 To 10 The natural number of
for ee in range(1,e+1): # Define the variables in the inner loop ee by e+1 The scope of the , At this time e It's about being for The outer loop traversal is 1, It is no longer a range
eee=e*ee # Define variables in the inner loop eee Calculation formula
print('{0}x{1}={2}\t'.format(e,ee,e*ee),end=' m ' )
# print Print , format Function format function \t Spacing tab ,{} Braces are used to fill in the variable order corner marks 0 Start ,
# end='' No line breaks at the end , Add the string content above
print() # Line break 

  1. 上一篇文章:
  2. 下一篇文章:
Copyright © 程式師世界 All Rights Reserved