pycharm中的中文代码显示不了
感觉不是代码的事,把一些设置改成了utf-8和开头加utf-8也不行,还是最后那行年月日显示不出,我用的是pycharm2018.2专业版,不知道你们的是不是,我把源代码...
感觉不是代码的事,把一些设置改成了utf-8和开头加utf-8也不行,还是最后那行年月日显示不出,我用的是pycharm 2018.2专业版,不知道你们的是不是,我把源代码发到这上面不知道可不可以复制。。。。
from datetime import datetime,date,timeprint(datetime.now()) #返回当天的日期和时间
today=datetime.now()
print(datetime.date(today)) #返回当天的日期
print(datetime.time(today)) #返回当天的时间print(datetime.ctime(today)) #返回"星期,月,日,时,分,秒,年"格式的字符串
print(datetime.utcnow()) #返回当前的UTC日期和时间
print(datetime.timestamp(today)) #返回当天的时间戳
print(datetime.fromtimestamp(datetime.timestamp(today)))#根据时间戳返回 UTC datetimedate1=date(2018,2,12)
time1=time(20,53,48)
print(datetime.combine(date1,time1))#邦定日期,时间,生成新的datetime对象newDatetime=datetime.strptime("12/2/18 20:59",'%d/%m/%y %H:%M') #用字符串和指定格式生成新的datetime对象
print(newDatetime)for tv in datetime.timetuple(today):
print(tv)
print(today.isocalendar()) #ISO格式的日期
print(today.strftime("%Y年%m月%d日 %H:%M:%S %p"))
就是这个代码 展开
from datetime import datetime,date,timeprint(datetime.now()) #返回当天的日期和时间
today=datetime.now()
print(datetime.date(today)) #返回当天的日期
print(datetime.time(today)) #返回当天的时间print(datetime.ctime(today)) #返回"星期,月,日,时,分,秒,年"格式的字符串
print(datetime.utcnow()) #返回当前的UTC日期和时间
print(datetime.timestamp(today)) #返回当天的时间戳
print(datetime.fromtimestamp(datetime.timestamp(today)))#根据时间戳返回 UTC datetimedate1=date(2018,2,12)
time1=time(20,53,48)
print(datetime.combine(date1,time1))#邦定日期,时间,生成新的datetime对象newDatetime=datetime.strptime("12/2/18 20:59",'%d/%m/%y %H:%M') #用字符串和指定格式生成新的datetime对象
print(newDatetime)for tv in datetime.timetuple(today):
print(tv)
print(today.isocalendar()) #ISO格式的日期
print(today.strftime("%Y年%m月%d日 %H:%M:%S %p"))
就是这个代码 展开
1个回答
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询