01月24日Python3 基础知识
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了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()
以上是关于01月24日Python3 基础知识的主要内容,如果未能解决你的问题,请参考以下文章