Display the current date in a mm/dd/yyyy format in Python
本问题已经有最佳答案,请猛点这里访问。
1 2 3 4 5 6 7 | from datetime import datetime current_time = datetime.now() print"%s-%s-%s" % (current_time.month, current_time.day current_time.year,) #Will print the current date in a mm/dd/yyyy format. input() |
上面的代码用于在命令提示符中以
当我试图运行模块时,我不断地得到这个错误,在"EDOCX1"(2)中结束时,它是无效的语法。python3使用的是与此不同的东西还是我犯了错误?
在python3,
如果你看furthermore,to the
1 2 | In [340]: print(current_time.strftime('%m/%d/%Y')) Out[340]: '08/05/2017' |