0
Time up code for data revision
Task Create a timer program that will take the number of seconds as input, and countdown to 0. # take the number as input number = int(input()) #use a while loop for the countdown while number>=0: print(number) number = number-1
8 ответов
+ 1
What is your question?
https://www.sololearn.com/Discuss/3317978/?ref=app
+ 1
The code said it was invald for coding in data so i had to redo it
+ 1
Why are you re-posting it? What new aspect came up?
+ 1
Indentation is inconsistent, there's an extra space. Also the tab's 4 space and manual 4 space aren't working properly, manually add 4 spaces.
And I don't see any "invalid thread" error. Are you sure you're not adding or removing something from the code?
0
It said invalid thread in coding for data
0
Yes also i follow you
0
Christian Francis ,
your code as it is raises this error message:
...
line 12 number = number-1
TabError: inconsistent use of tabs and spaces in indentation
so you should remove all spaces in front of this line and then add 4 spaces in front of the line.
0
Tereko chod dunga