[Python Code] Python tính tổng hai số được nhập từ bàn phím

Python tính tổng hai số được nhập từ bàn phím.

Cách nhập 2 giá trị số từ bàn phím và thực hiện phép cộng rồi in kết quả ra màn hình.

def main():
    num1 = input("Input value 1 = ")
    num2 = input("Input value 2 = ")
    sum = float(num1) + float(num2)

    print("Sum = ", sum)
    return 0

if __name__ == "__main__":
    main()

Input: num1 = 8, num2 = 10

Output: Sum = 13

 

Leave a Reply

Your email address will not be published. Required fields are marked *

This site uses Akismet to reduce spam. Learn how your comment data is processed.