Display numbers using for loop

Question

Display numbers from -12 to -1 using for loop.

in progress 0
YashikaKhurana 3 years 0 Answers 617 views Master 0

Answers ( No )

  1. for i in range(-12,0):
    print(i)

  2. for i in range(-12,0):
    print(i)

Leave an answer

Browse
Browse