this post was submitted on 21 Jun 2023
19 points (91.3% liked)
Programmer Humor
32396 readers
564 users here now
Post funny things about programming here! (Or just rant about your favourite programming language.)
Rules:
- Posts must be relevant to programming, programmers, or computer science.
- No NSFW content.
- Jokes must be in good taste. No hate speech, bigotry, etc.
founded 5 years ago
MODERATORS
you are viewing a single comment's thread
view the rest of the comments
view the rest of the comments
You basically got it yeah. You can do x % 2 and check if that is 0, as % calculates the remainder (in python at least)
y = 1
while y ==1:
x = input("Enter Number")
print("EVEN")
print("ODD")
I don't know why, but I opened up my IDLE for the first time in a year and did it.
Know you probably don’t care, but you can do a while loop using while True:
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.
Unless you want it to keep asking the question of course**