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

29th Aug 2021, 4:57 PM
masterofallthings
masterofallthings - avatar
6 Respuestas
+ 3
Is this a quiz question or what?
29th Aug 2021, 4:59 PM
A͢J
A͢J - avatar
+ 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.
29th Aug 2021, 5:16 PM
A͢J
A͢J - avatar
+ 2
masterofallthings In which lesson?
29th Aug 2021, 5:07 PM
A͢J
A͢J - avatar
0
Its a lesson question
29th Aug 2021, 5:00 PM
masterofallthings
masterofallthings - avatar
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
29th Aug 2021, 8:34 PM
you are smart. you are brave.
you are smart. you are brave. - avatar
- 1
List operations Python core 24.1
29th Aug 2021, 5:12 PM
masterofallthings
masterofallthings - avatar