关于输入:要求用户键入一个整数然后打印“是”如果该整数可以被3整除,否则打印“否”(Python)

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")

我想我把if声明搞砸了,但我真的搞不清楚。


如果模块是零,则由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")
  • 法国电力公司

  • 使用模块操作员


  • 应该是print("Yes")Instead of print("Yes)