【Python第二章】2.4题
# 将字符 "Nice To Meet You !"的大写转为小写 # 两种解法 ord判断ASCLL码是否大于65小于97 # 或者使用函数.lower()
开始编译:
# 将字符 "Nice To Meet You !"的大写转为小写
# 两种解法 ord判断ASCLL码是否大于65小于97
# 或者使用函数.lower()
hello = "Nice To Meet You !"
print(hello.lower())
运行结果:
nice to meet you !
Views: 294