Q&A Discussies
How do you square python tuples?
0 Stemmen
3 AntwoordenPlease Help 😨☠️
0 Stemmen
2 AntwoordenPython Contact List
0 Stemmen
3 AntwoordenPython min function with *args
0 Stemmen
7 AntwoordenWhat is the meaning of it.
2 Stemmen
1 AntwoordCoding help for project idea
0 Stemmen
2 AntwoordenWhy 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 AntwoordenWhy this output occur?
2 Stemmen
3 Antwoorden