写一个 Python 程序,用一个实际例子找到一个数字的最后一位。
寻找数字最后一位的 Python 程序
这个 python 程序允许用户输入任何整数值。接下来,Python 将查找用户输入值的最后一位。
# Python Program to find the Last Digit in a Number
number = int(input("Please Enter any Number: "))
last_digit = number % 10
print("The Last Digit in a Given Number %d = %d" %(number, last_digit))
使用函数查找数字最后一位的 Python 程序
一个数字程序中的这个 Python 最后一位同上。但是这次,我们分离了 Python 逻辑,并将其放在单独的函数中。
# Python Program to find the Last Digit in a Number
def lastDigit(num):
return num % 10
number = int(input("Please Enter any Number: "))
last_digit = lastDigit(number)
print("The Last Digit in a Given Number %d = %d" %(number, last_digit))
Python 最后一位输出
Please Enter any Number: 1925
The Last Digit in a Given Number 1925 = 5
>>>
Please Enter any Number: 90876
The Last Digit in a Given Number 90876 = 6