您好,登錄后才能下訂單哦!
第十五課 練習題
'''
1. 編寫一個Python程序,從控制臺輸入一個字符串(保存到變量s中),
然后通過while循環不斷輸入字符串(保存到變量subStr中),
并統計subStr在s中出現的次數,最后利用format方法格式化統計結果。
'''
s = input("請輸入一個字符串:")
while True:
subStr = input("請輸入要統計的字符串:")
if subStr == ":exit":
break;
i = 0
count = 0
while i < len(s):
index = s.find(subStr, i)
if index > -1:
count += 1
i = index + len(subStr)
else:
break;
print("'{}'在'{}'中出現了{}次".format(subStr, s, count))
輸出的結果為:
請輸入一個字符串:l love python
請輸入要統計的字符串:o
'o'在'l love python'中出現了2次
-------------------------------
'''
2. 從控制臺輸入n,利用format方法生成一個星號三角形
*
***
*****
*******
'''
floorStr = input('請輸入一個層數:')
floor = int(floorStr)
num = floor * 2 -3 # 17
while floor > 0:
print("{:<{a}}{:*<{b}}".format(" ","",a =floor,b=(num - (floor - 2)*2)))
floor -= 1
'''
print("{:<10}{:*<1}".format(" ",""))
print("{:<9}{:*<3}".format(" ",""))
print("{:<8}{:*<5}".format(" ",""))
print("{:<7}{:*<7}".format(" ",""))
print("{:<6}{:*<9}".format(" ",""))
print("{:<5}{:*<11}".format(" ",""))
print("{:<4}{:*<13}".format(" ",""))
print("{:<3}{:*<15}".format(" ",""))
print("{:<2}{:*<17}".format(" ",""))
print("{:<1}{:*<19}".format(" ",""))
'''
請輸入一個層數:10
*
***
*****
*******
*********
***********
*************
***************
*****************
*******************
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。