파이썬에서 홀수와 짝수를 찾는 방법은 무엇입니까?
4905 단어 python
기본적으로 여기서 논리는
if (num %2 == 0)
이고 짝수이거나 홀수입니다.def myFunction():
list1 = []
while True:
userInp = input("Enter your number or press q to exit\n")
if userInp == "q":
evens = []
odds = []
for i in range(0, len(list1)):
if int(list1[i]) % 2 == 0:
evens.append(list1[i])
else:
odds.append(list1[i])
print("Your list of numbers: ", list1)
if len(evens) == 0:
print("No even numbers detected.")
else:
print("Even numbers are:", evens)
if len(odds) == 0:
print("No odd numbers detected.")
else:
print("Odd numbers are:", odds)
break
else:
try:
userInp = int(userInp)
if userInp not in list(list1):
list1.append(userInp)
except ValueError:
print("Error: You have entered a non integer or a decimal fraction number.")
if __name__ == "__main__":
myFunction()
Reference
이 문제에 관하여(파이썬에서 홀수와 짝수를 찾는 방법은 무엇입니까?), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://dev.to/codewithlaksh/how-to-find-the-odd-and-even-numbers-in-python--1oag텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)