+ 1
Why does it say there is 1 item in the list while there are four items?
nums = ["hi" "how" "are" "you"] print (nums) print(len(nums))
2 ответов
+ 3
u didn,t use commas there
0
Thanks. That is it!
nums = ["hi" "how" "are" "you"] print (nums) print(len(nums))