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.
このコードを考えると:
from datetime import datetime Time = datetime.now() print(Time)
最後の桁だけを印刷するにはどうすればよいですか?例えば。
2013-02-08 15:13:32.150263プリント3 2013-02-08 15:17:40.759672プリント2
print str(Time)[-1]トリックをするだろう...
print str(Time)[-1]
次を使用できます。
print str(Time)[-1:]