python偶数怎么表达

python偶数怎么表达,第1张

python偶数怎么表达

在python编译器中,新建一个空白的PYTHON文档;输入:

n = float(input("Please input a number: "))

if n % 2 == 0:

print("This is an even")

elif n % 2 != 0:

print("This is an odd")

如果输入的数字是偶数,输出的文字为“This is an even”。如果输入的数字是奇数,输出的文字为“This is an odd”。

python怎么判断奇数偶数

1、首先打开JUPYTER NOTEBOOK,新建一个空白的PYTHON文档。也可以用其它编译器的。

2、输入以下内容:

num1 = int(input("Please input a number: "))

num2 = int(input("Please input a number: "))

if num1 % num2 == 0:

print("This is OK.")

elif num1 % num2 != 0:

print("This is NOT OK")

如果输入的数字为偶数,文档就会返回文字"This is OK”;如果输入的数字是奇数,文档就会返回文字"This is NOT OK”。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/bake/3996029.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-10-22
下一篇 2022-10-22

发表评论

登录后才能评论

评论列表(0条)

保存