Loading collection data...
Collections are a way for you to organize kata so that you can create your own training routines. Every collection you create is public and automatically sharable with other warriors. After you have added a few kata to a collection you and others can train on the kata contained within the collection.
Get started now by creating a new collection.
It also doesn't say anything about having lists. (Python version)
Yup, I know what I did to cause it (issue with my code not the kata), (not used to this CW thing).
Thanks, I thought it was an issue with the Kata because of how/when it was ocurring...
Error with the def (It reports an invalid syntax) - It means I cannot submit my solution
When attepting this Kata there is a santax error when importing the random module
Couple of things I suggest is to change your variable names for example, instead of
n_t
a more sutible name for it could benumber_of_thousands
orNum_thousands
this would help the read ablility of your code.Anoughter possible change could be to use the digits location and the length of the inputed number (By which I mean the length (
len()
) ofstr(178)
(which equals "178") is 3 (meaning 3 digts)Good luck with making improvements! (also commenting code is a good idea)