time.struct_time object as returned by time.gmtime() method:
time.struct_time(tm_year=2021, tm_mon=10, tm_mday=7, tm_hour=15, tm_min=30, tm_sec=51, tm_wday=3, tm_yday=280, tm_isdst=0)
time.struct_time obj in string of the form 'Day Mon Date Hour:Min:Sec Year':
Thu Oct 7 15:30:51 2021
time.struct_time object as returned by time.localtime() method:
time.struct_time(tm_year=2021, tm_mon=10, tm_mday=7, tm_hour=21, tm_min=0, tm_sec=51, tm_wday=3, tm_yday=280, tm_isdst=0)
time.struct_time obj in string of the form 'Day Mon Date Hour:Min:Sec Year':
Thu Oct 7 21:00:51 2021