Share
Display numbers using for loop
Question
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Display numbers from -12 to -1 using for loop.
Answers ( No )
for i in range(-12,0):
print(i)
for i in range(-12,0):
print(i)