ask the user to type an integer and then prints “Yes” if that integer is divisible by 3, otherwise prints “No” (Python)
本问题已经有最佳答案,请猛点这里访问。
我是Python的新手。我已经学习了if-else语句,sto这个练习必须是if-else,而不是更多的东西。
Write a program which asks the user to type an integer and then prints"Yes" if that integer is divisible by 3, otherwise prints"No"
号
我的代码是:
1 2 3 4 5 6 | user_input = input("Type an integer:") user_int = int(user_input) if user_int / 3: print("Yes) else: print("No") |
我想我把
如果模块是零,则由EDOCX1划分。所以,你的条件应该是
1 2 3 4 5 6 | user_input = input("Type an integer:") user_int = int(user_input) if user_int % 3==0: print("Yes") else: print("No") |
法国电力公司
使用模块操作员
应该是