“Python Asctime” Ответ

библиотека Python Time

#also see datetime
import time
now = time.time()
print(now)
Dr. Hippo

Python Asctime

import time

t = time.localtime()
print time.asctime(t)
# Prints Tue Feb 17 09:42:58 2009
Successful Serval

Ответы похожие на “Python Asctime”

Вопросы похожие на “Python Asctime”

Больше похожих ответов на “Python Asctime” по Python

Смотреть популярные ответы по языку

Смотреть другие языки программирования