Question

Find an example of Python program on the Web and provide a link for the source....

Find an example of Python program on the Web and provide a link for the source.


Discuss what the program does and whether it has inputs, processes, and outputs.


0 0
Add a comment Improve this question Transcribed image text
Answer #1

Answer:

According to the policies, can't provide external link.

Here I am writing a basic python program with screenshots and output:


a = int(input('Enter first number: '))
b = int(input('Enter second number: '))

addition = a+b
difference = a-b
multiplication = a*b
division = a/b

print("Addition:", addition)
print("Difference:", difference)
print("Multiplication:", multiplication)
print("Division:", division)

Input: The program takes input from the user, 2 integers a and b

Processing: It computes the addition, subtraction, multiplication and division of those 2 variables and store them in the new variables.

Output: It prints all the variables created during processing.

Screenshot:

Output:

PLEASE UPVOTE IF YOU FOUND THIS HELPFUL!

Add a comment
Know the answer?
Add Answer to:
Find an example of Python program on the Web and provide a link for the source....
Your Answer:

Post as a guest

Your Name:

What's your source?

Earn Coins

Coins can be redeemed for fabulous gifts.

Not the answer you're looking for? Ask your own homework help question. Our experts will answer your question WITHIN MINUTES for Free.
Similar Homework Help Questions
ADVERTISEMENT
Free Homework Help App
Download From Google Play
Scan Your Homework
to Get Instant Free Answers
Need Online Homework Help?
Ask a Question
Get Answers For Free
Most questions answered within 3 hours.
ADVERTISEMENT
ADVERTISEMENT
ADVERTISEMENT