寫一個 Python 程序來減去兩個數字。
num1 = 128
num2 = 256
sub = num1 - num2
print('The Result of subtracting {0} from {1} = {2}'.format(num2,num1,sub))
The Result of subtracting 256 from 128 = -128
這個 Python 程序接受兩個整數值,並從另一個數中減去一個數。
num1 = int(input("Please Enter the First Number = "))
num2 = int(input("Please Enter the second number = "))
sub = num1 - num2
print('The Result of subtracting {0} from {1} = {2}'.format(num2,num1,sub))
其他產出很少
Please Enter the First Number = 11
Please Enter the second number = 43
The Result of subtracting 43 from 11 = -32
Please Enter the First Number = 99
Please Enter the second number = 23
The Result of subtracting 23 from 99 = 76
Python 編程使用函數減去兩個數。
def subtractTwoNum(a, b):
return a - b
num1 = int(input("Please Enter the First Number = "))
num2 = int(input("Please Enter the second number = "))
sub = subtractTwoNum(num1, num2)
print('The Result of subtracting {0} from {1} = {2}'.format(num2,num1,sub))
Please Enter the First Number = 12
Please Enter the second number = 49
The Result of subtracting 49 from 12 = -37
Please Enter the First Number = 70
Please Enter the second number = 37
The Result of subtracting 37 from 70 = 33
原創文章,作者:小藍,如若轉載,請註明出處:https://www.506064.com/zh-hk/n/297690.html