首页 >

python奇偶性程序怎么打 – python – 前端,python os 打开指定目录

python学习网站,python timeout=2,python 递归 return,python自动上传,python元素查询方法,python shadowsockt,python animation,學python难度,python多次切片,python orc方案,python os 打开指定目录python奇偶性程序怎么打 - python - 前端,python os 打开指定目录

01

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

02

n = input(“Please input a number: “)

if n % 2 == 0:

print(“This is an even.”)

elif n % 2 != 0:

print(“This is an odd”)

大家首先定义一个变量n,然后用INPUT问用户输入变量。

判断是否奇偶数可以用余数来作为判断依据。但是这里有点问题。

03

n = int(input(“Please input a number: “))

if n % 2 == 0:

print(“This is an even.”)

elif n % 2 != 0:

print(“This is an odd”)

大家要注意要定义输入的变量是整型,因为字符串是不能进行运算的。

04

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

有些情况下大家需要用到浮点型,就是float,注意两者的区别。

05

n = int(input(“Please input a number: “))

if n % 4 == 0:

print(“This number is a multiple of 4.”)

elif n % 4 != 0:

print(“This number is not a multiple of 4”)

除了除以2以外,还可以除以4来作为判断,主要看自己想要判断什么数字。

06

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

换一种方法,输入两种数字,不止可以判断是否奇偶数以外,还可以判断是否两个数字是否整除。


python奇偶性程序怎么打 - python - 前端,python os 打开指定目录
  • 应该从哪里开始着手准备 - python - 前端,python自动化 案例
  • 应该从哪里开始着手准备 - python - 前端,python自动化 案例 | 应该从哪里开始着手准备 - python - 前端,python自动化 案例 ...

    python奇偶性程序怎么打 - python - 前端,python os 打开指定目录
  • arcgis里面怎么做最小累积阻力模型 - python - 前端,python 抓包开源
  • arcgis里面怎么做最小累积阻力模型 - python - 前端,python 抓包开源 | arcgis里面怎么做最小累积阻力模型 - python - 前端,python 抓包开源 ...

    python奇偶性程序怎么打 - python - 前端,python os 打开指定目录
  • python中不可作为字典的是 - python - 前端,python set up
  • python中不可作为字典的是 - python - 前端,python set up | python中不可作为字典的是 - python - 前端,python set up ...