Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我需要记录用户将一系列短语(字符串)中的每个人发送到 python 脚本中的时间。我怎样才能做到这一点?谢谢
使用模块时间:
import time time.time()
或者(如果您正在寻找人类可读的格式)使用日期时间:
import datetime datetime.datetime.now()
当字符串到达脚本时调用这些方法(通过控制台的 raw_input 方法,或通过脚本通信的任何其他方法)。