2018年1月8日 星期一

Python: Add two objects if both objects are an integer type

Python: Add two objects if both objects are an integer type

Python Basic: Exercise-36 with Solution

Write a Python program to add two objects if both objects are an integer type.
Sample Solution:-
def add_numbers(a, b):
    if not (isinstance(a, int) and isinstance(b, int)):
         raise TypeError("Inputs must be integers")
    return a + b

print(add_numbers(10, 20))

print(add_numbers(1234, 8765))

========= RESTART: F:/Python_APSC/py-ex-basic-36.py ===========
30
9999
>>> 

沒有留言:

張貼留言

113 學年度第 1 學期 RFID應用課程 Arduino程式

113 學年度第 1 學期 RFID應用課程 Arduino程式 https://www.mediafire.com/file/zr0h0p3iosq12jw/MFRC522+(2).7z/file 內含修改過後的 MFRC522 程式庫 (原程式有錯誤) //定義MFRC522...