0% found this document useful (0 votes)
2 views2 pages

Beginner Python Programs: Addition & Subtraction

The document provides two simple Python programs for beginners, one that adds the sum of two numbers and one that subtracts two numbers.
Copyright
© All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PPTX, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
2 views2 pages

Beginner Python Programs: Addition & Subtraction

The document provides two simple Python programs for beginners, one that adds the sum of two numbers and one that subtracts two numbers.
Copyright
© All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PPTX, PDF, TXT or read online on Scribd

Simple 2 Python programs for beginners

Python program to add sum of two numbers


Ans:
a=33
b=66
print(a+b)
• Python program to subtract two numbers
Ans:
a=33
b=66
print(a-b)

You might also like