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')
4 Answers
+ 8
If expected output is cat, you need to print cat only.
No need to print its entire family.
print("cat")
+ 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 ^^
0
Can you please post your code, and not put it in the tags.
0
I fix it tell me