LearningPy/main.py

8 lines
130 B
Python
Raw Normal View History

2022-11-30 19:59:03 +00:00
import mymodule as m
2022-11-30 20:17:20 +00:00
x = m.gtime()
print(x.year)
print(type(x))
print(x.strftime("%A"))
y = m.mdate(2022, 11, 30)
print(y)