Этот коммит содержится в:
2025-10-20 10:38:42 +03:00
родитель 59a4931c7e
Коммит bd601825a0

Просмотреть файл

@@ -36,9 +36,9 @@ time.struct_time(tm_year=2025, tm_mon=10, tm_mday=20, tm_hour=10, tm_min=25, tm_
>>> lst = list("abcdefghijgklmnopqrstuvwxyz") >>> lst = list("abcdefghijgklmnopqrstuvwxyz")
>>> random.sample(lst, N) >>> random.sample(lst, N)
['i', 'g', 'g', 'j', 't', 's', 'r', 'v', 'f', 'y', 'b', 'z', 'l'] ['i', 'g', 'g', 'j', 't', 's', 'r', 'v', 'f', 'y', 'b', 'z', 'l']
>>> current_time = time.time() >>> current_time = time.time()+3*3600
>>> t_sec = current_time - (time.mktime(nowtime) - 3*3600) >>> t_sec = current_time - (time.mktime(nowtime))
>>> t_min = round(t_sec / 60; 4) >>> t_min = round(t_sec / 60; 4)
0.0144 0.0075
``` ```