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

User Netlemon
by
3.2k 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

User XavierStuvw
by
4.0k points