#99乘法口訣表;要求1的一行。2的一行print('')foriinrange(1,10):
forjinrange (1,10):
print('%d * %d=% 2d '% (i,j,i*j),end='')# end讓1的結束以後另起一行
print('')
print('\n')
#左上三角形
foriinrange(1,10):
forjinrange (i,10):#注意此處範圍
print('%d * %d=% 2d '% (i,j,i*j),end='')# end讓1的結束以後另起一行
print('')
#右上三角形
foriinrange (1,10):
forkinrange (1,i):
print(end=' ')
forjinrange(i,10):
print('%d * %d=% 2d '% (i,j,i*j),end='')
print(' ')
#左下三角形(我最喜歡的)
foriinrange (1,10):
forjinrange(1,i+1):
print('%d * %d=% 2d '% (i,j,i*j),end='')
importtimel=forkey ,valueindict.items(l):
print(key,value)
time.sleep(10)#延遲10s
importtimeprint(time.strftime('%y -%m-%d %h:%m:%s',time.localtime(time.time())))
time.sleep(10)#延長10s
print(time.strftime('%y -%m-%d %h:%m:%s',time.localtime(time.time())))
程式設計練習100例 16
importtime importdatetime if name main print datetime.date.today strftime d m y 今天日期 python 的datetime模組 其實就是date和time 模組的結合,常見的屬性方法都比較常用比如 datetime.da...
程式設計練習100例 31 32 33
31 獲取 星期幾的第乙個字母來判斷一下是星期幾 若果第乙個字母一樣,繼續判斷第二個字母 usr bin python coding utf 8 letter input please input ifletter s print 請輸入第二個字母 letter input please input...
python練習100例 Python練習100例
filename cnt 0 count the sum of result fori inrange 1,5 forj inrange 1,5 fork inrange 1,5 ifi j andi k andj k print i 100 j 10 k cnt 1 print cnt 程式 題目...