0
Error code
nums=list(rang(5, 8)) print(len(nums)) Result: Traceback (most recent call last): File "<string>", line 2, in <module> NameError: name 'rang' is not defined
2 ответов
+ 4
yes you just forgot the „e“ in range!
+ 3
range()
nums=list(rang(5, 8)) print(len(nums)) Result: Traceback (most recent call last): File "<string>", line 2, in <module> NameError: name 'rang' is not defined