ملخص
يمكن استخدام هذا البرنامج النصي لتحليل التاريخ والوقت. افتح ملفًا فارغًا وقم بتسميته على سبيل المثال dateParser.py.
انسخ الكود أدناه والصقه (وتأكد من فهمك لما يفعله) في الملف.
dateParser.py
from datetime import datetime now = datetime.now() mm = str(now.month) dd = str(now.day) yyyy = str(now.year) hour = str(now.hour) mi = str(now.minute) ss = str(now.second) print mm + "https://www.pythonforbeginners.com/" + dd + "https://www.pythonforbeginners.com/" + yyyy + " " + hour + ":" + mi + ":" + ss
احفظ الآن واخرج من الملف وقم بتشغيله عن طريق:
تاريخ الثعبان $
وقت النوم
في بايثون يمكنك استخدام time.sleep () لتعليق التنفيذ لعدد معين من الثواني. يتم إعطاء الثواني بين الأقواس.
# How to sleep for 5 seconds in python: import time time.sleep(5) # How to sleep for 0.5 seconds in python: import time time.sleep(0.5)
كيفية الحصول على التاريخ والوقت الحاليين
لقد وجدت هذا البرنامج النصي للتاريخ والوقت على هذا الموقع الممتاز: http://www.saltycrane.com/blog/2008/06/how-to-get-current-date-and-time-in/
import datetime now = datetime.datetime.now() print print "Current date and time using str method of datetime object:" print str(now) print print "Current date and time using instance attributes:" print "Current year: %d" % now.year print "Current month: %d" % now.month print "Current day: %d" % now.day print "Current hour: %d" % now.hour print "Current minute: %d" % now.minute print "Current second: %d" % now.second print "Current microsecond: %d" % now.microsecond print print "Current date and time using strftime:" print now.strftime("%Y-%m-%d %H:%M")
The result: Current date and time using str method of datetime object: 2013-02-17 16:02:49.338517 Current date and time using instance attributes: Current year: 2013 Current month: 2 Current day: 17 Current hour: 16 Current minute: 2 Current second: 49 Current microsecond: 338517 Current date and time using strftime: 2013-02-17 16:02