文章详情页
python - datetime时间输出的问题
问题描述
1在codecademy上学习PYTHON基础知识 学到 datetime
运行了一下代码:
from datetime import datetimenow=datetime.now()#print nowprint now.yearprint now.monthprint now.dayprint now.time"输出的问题是: 年 月 日 都没问题 就是 时间那里 不知道是啥意思。’’’2017515<built-in method time of datetime.datetime object at 0x7f7bd75f7f30>None
问题解答
回答1:from datetime import datetimenow=datetime.now()#print nowprint now.yearprint now.monthprint now.dayprint now.hourprint now.minuteprint now.secondprint now.microsecond
没有time属性
print now.date()print now.time()print now.timetuple()print now.ctime()回答2:
print now.tiem()
相关文章:
1. 引用 node.js express加载 静态文件 报错 ??2. javascript - 引入 simditor,但是显示标签,这个怎么解决。3. 如何更新/删除指定的两条或多条数据4. 优先级的问题?5. android - 目前有哪些用Vue.js开发移动App的方案?6. 搭建一个用户间相互博弈的网站7. mysql_replication - mysql读写分离时如果单台写库也无法满足性能怎么解决8. node.js - 利用vue-cli 构建执行到npm run dev 报错,求解~9. mysql 一个sql 返回多个总数10. vue.js - weex 没有背景图片属性怎么办?
排行榜