二十五岁时我们都一样愚蠢、多愁善感,喜欢故弄玄虚,可如果不那样的话,五十岁时也就不会如此明智。
标题:Python3 时间time模块 Strptime 方法 Python3 时间time模块 Strptime 方法 #!/usr/bin/python3 import time struct_time = time.strptime("30 12 2015", "%d %m %Y") print ("tuple : ", struct_time)
#!/usr/bin/python3 import time struct_time = time.strptime("30 12 2015", "%d %m %Y") print ("tuple : ", struct_time)