Python自学
程序员文章站
2023-11-28 18:44:04
print("\u4e2d\u56fd\") 报错,语法错误 修改,去掉尾部的\,正确 import datetimeprint("now:"+datetime.datetime.now().year)#输出当前年份 报错, Traceback (most recent call last): Fi ......
print("\u4e2d\u56fd\")
报错,语法错误
修改,去掉尾部的\,正确
import datetime
print("now:"+datetime.datetime.now().year)
#输出当前年份
报错,
traceback (most recent call last):
file "d:/python/title.py", line 12, in <module>
print("now:"+datetime.datetime.now().year)
typeerror: can only concatenate str (not "int") to str
修改,
print("now:"+str(datetime.datetime.now().year))
进行了int-》str,类型转换,python并不能像java一样,在做拼接的时候自动把类型转换为string类型;
name=input("输入")
print(name+"他的ascii码为",ord(c))
报错,
nameerror: name 'c' is not defined
修改,
未解决。。。。