👤

What is the output of the following program?

for num in range(4):
print (num * 2)



Question # 5
Fill in the Blank
Fill in the missing parts to produce the following output.

OUTPUT:
0
1
2
3

num in range(
):
print (num)
Question # 6
Math Formula
What is the output of this program? Assume the user enters 2, 5, 1, and 6.

numA = 0
for count in range(4):
answer = input ("Enter a number: ")
fltAnswer = float(answer)
numA = numA + fltAnswer
print (numA)


please help me T^T ill post a picture if need be T^T
this is four questions so tons of points not free tho pleaseee T^T!!!!


Answer :

I think #4 is

for num in range(4):

print(num)

The output will be:

0

1

2

3

No idea tho if it is right

In Trainings: Other Questions