Q&A Discussies
lists
0 Stemmen
1 AntwoordPossible Explanations?
1 Stem
1 AntwoordInput type range...
1 Stem
2 Antwoordenhelp
0 Stemmen
1 Antwoordhow
0 Stemmen
3 AntwoordenWhat is my mistake?
0 Stemmen
1 AntwoordList index out of range?
0 Stemmen
3 AntwoordenThe multiple of a random number
0 Stemmen
1 AntwoordWhy this code runs?:
nums = [4, 5, 6]
msg = "Numbers: {} {}". format(nums[0], nums[1], nums[2])
print(msg)
Numbers:4, 5.
Byt the code:
nums = [4, 5, 6]
msg = "Numbers: {} {} {} {}". format(nums[0], nums[1], nums[2])
print(msg)
leading to error?
IndexError: tuple index our of range
1 Stem
3 AntwoordenLooping
1 Stem
1 Antwoordcan someone tell me how to make it impossible for a user to type a 'userchoice1[x]' value that does not range from 1 - 10.
If you also know a way I can make the user input another value for the 'userchoice1[x]' variable if it is less than 1, I'll appreciate you share the knowledge with me.
please see the short code below
1 Stem
2 Antwoorden