01月24日【Python3 基礎知識】

01月24日【Python3 基礎知識】

3.4 統計字元串 3.5 乘法口訣

3.4 統計字元串

# 統計字元串給類型符號個數  s = n = f = 0  st = input("隨意輸入字元:")  for i in st:      if i.isalpha():          s += 1      elif i.isdigit():          n += 1      else:          f += 1  print("字母有:{0}個,數字有:{1}個,其他符號有:{2}個。".format(s, n, f))  print("輸入字元長度:{0}".format(len(st)))

3.5 乘法口訣

# 乘法口訣表  for i in range(1,10):      for j in range(1,i+1):          print("{0}x{1}={2}  ".format(i, j, i*j), end="")      print()