14 lines
190 B
Python
Executable File
14 lines
190 B
Python
Executable File
#!/usr/bin/python3
|
|
from datetime import datetime, time
|
|
now = datetime.now()
|
|
now_time = now.time()
|
|
|
|
|
|
|
|
if now_time >= time(6,00) and now_time <= time(22,00):
|
|
print ('0')
|
|
else:
|
|
print ('1')
|
|
|
|
|