Computer Science, asked by mohammedshifan, 3 months ago

for i in range(10,-1,-3)

print(I,end=”@”)​

Answers

Answered by llprettysoulll
0

Answer:

it is an computer coading

Answered by anindyaadhikari13
1

Question:-

Write the output of the following code.

Answer:-

Given code,

for i in range(10,-1,-3):

print(i,end=”@”)

Output will be,

10@7@4@1@

For verification,check out the attachment.

Attachments:
Similar questions