Python 编写确定个位、十位以上方法及各数位的和程序

Python 编写确定数字位方法

  • Python 编写确定个位、十位
  • Python 编写确定个位、十位、百位
  • 方法解析:
  • Python 各数位的和程序

利用%(取余符号)、//(整除)符号。

Python 编写确定个位、十位

num = 17
a = num % 10 
b = num // 10 
print(a)
print(b)

输出:
7
1

Python 编写确定个位、十位、百位

num = 754
a = num % 10 # 个位
b = (num % 100) // 10 # 十位
c = num // 100 # 百位
print(a)
print(b)
print(c)

输出:
4
5
7

方法解析:

Python 编写确定个位、十位以上方法及各数位的和程序_第1张图片

由此我们可得求数字各位数之和程序:

Python 各数位的和程序

num = int(input())
last_digit = num % 10
first_digit = num // 10
print("十位数:", first_digit)
print("个位数:", last_digit)
print("和:", last_digit+first_digit)

你可能感兴趣的:(python,开发语言,算法)