작성
·
190
답변 1
1
안녕하세요 강성훈님,
input
함수는 아래를 보시는 것과 같이 항상 str
포맷을 리턴합니다.
https://www.w3schools.com/python/ref_func_input.asp
제 생각에는 isnumeric
를 사용하시는게 좋을 듯 하네요.
https://www.w3schools.com/python/ref_string_isnumeric.asp
x = input()
if x.isnumeric():
if int(x) % 3 == 0:
print("fizz")
else:
print(x)
else:
print("not integer")
도움이 되셨으면 좋겠네요!
감사합니다!