Portfolio/Python_Scripts/PomodoTimer/Pomodoro.py

7 lines
78 B
Python

import time
def main():
timed = time.localtime()
print(timed)
main()