0

Hey where is the problem here in the last tag

print('30days') print('24hours in a day') print('60 minutes in a hour') print('60 seconds in a minute') print()('2592000')

13th Jun 2021, 12:13 PM
Anis Ben Amor
Anis Ben Amor - avatar
4 Answers
+ 8
If expected output is cat, you need to print cat only. No need to print its entire family. print("cat")
13th Jun 2021, 12:41 PM
Simba
Simba - avatar
+ 1
print()('2592000') # should not work... but: print('2592000') # will... # also will work: print(2592000) # and / or: print(30*24*60*60) # but not: print('30*24*60*60') # however, code coaches doesn't expect output with more than expected value printed ^^
13th Jun 2021, 4:17 PM
visph
visph - avatar
0
Can you please post your code, and not put it in the tags.
13th Jun 2021, 12:21 PM
Kamil Hamid
Kamil Hamid - avatar
0
I fix it tell me
13th Jun 2021, 12:37 PM
Anis Ben Amor
Anis Ben Amor - avatar