185k views
1 vote
For z in range (-100,100,100) :
print (z,end=' ')​

User Double H
by
8.6k points

1 Answer

0 votes

The corrected code prints the value -100 due to the specified range of -100 to 100 (exclusive) with a step size of 100. The `end=""` parameter ensures no space between printed values.

The provided code has a small mistake: the `end` parameter in the `print` function should have a space after the equal sign to separate it from the empty string. Here's the corrected code:

for z in range(-100, 100, 100):

print(z, end="")

With this correction, the output will be:

-100

This is because the range specified is from -100 to 100 (exclusive) with a step size of 100, so only the value -100 will be printed.

The complete question is:

What is the output for the following code for z in range (-100,100, 100): print (z,end="") ​?

User Hitesh Vaghani
by
8.0k points