asked 160k views
2 votes
What is output by the following code? for x in range(7, 16): print(x * 2, end=" ") Group of answer choices 14 16 18 20 22 24 26 28 32 16 18 20 22 24 26 28 32 14 16 18 20 22 24 26 28 30 16 18 20 22 24 26 28 30

asked
User Netlemon
by
7.9k points

1 Answer

4 votes

Input:-


\tt for\:x\:in\:range(7,16):


\tt print(x*2,end

Output:-


\tt 14,16,18,22,24,26,28,30,32

The loop will start from 7×2=14 to 16×2=32

answered
User XavierStuvw
by
8.6k points

No related questions found