在编写python程序时,需要注意字符和数字的区别。使用数字是不能加引号,而编写print语句是,则需要str()函数来避免系统混淆。否则python程序会进行报错
sample:
numbers = list(range(1,10))
if number == 1
print(str(number) + "st")
这样运行则会顺利显示:1st
原文地址:http://blog.51cto.com/13595859/2070027
时间: 2024-10-14 07:15:48
在编写python程序时,需要注意字符和数字的区别。使用数字是不能加引号,而编写print语句是,则需要str()函数来避免系统混淆。否则python程序会进行报错
sample:
numbers = list(range(1,10))
if number == 1
print(str(number) + "st")
这样运行则会顺利显示:1st
原文地址:http://blog.51cto.com/13595859/2070027