0
What is the next number in this sequence?
I need to input the next number in a list but I don't know how to find it. Can anyone tell me what the next number is so i can move on? Here is the list 33, 42, 56
6 Respuestas
+ 3
Is this a quiz question or what?
+ 3
masterofallthings
There is not a next number. That's is list and you have to fill the blanks.
Check lesson and know how to use list and what is the syntax of list.
You have to reassign value to 2nd position element and finally you have to print the list.
So there are 3 blank space and you have to fill that.
+ 2
masterofallthings
In which lesson?
0
Its a lesson question
0
masterofallthings it will look something like this:
nums=[33,42,56] # create the list
nums[1]=22 # reassigns second item in list
print(nums) # prints updated list
- 1
List operations
Python core 24.1