• Guy_Fieris_Hair@lemmy.world
    link
    fedilink
    arrow-up
    1
    ·
    edit-2
    1 year ago

    y = 1

    while y ==1:

    x = input(“Enter Number”)

    if int(x) % 2 == 0:
    

    print(“EVEN”)

    else:
    

    print(“ODD”)

    I don’t know why, but I opened up my IDLE for the first time in a year and did it.

    • nero@lemmy.world
      link
      fedilink
      English
      arrow-up
      1
      ·
      1 year ago

      Know you probably don’t care, but you can do a while loop using while True: <code>

      Which is the same as you using a statement which equals to true.

      Thought i don’t think you need it for what you’re doing currently.