0% found this document useful (0 votes)
2 views1 page

Basic Python Program Report

This report outlines the fundamentals of Python programming and presents a simple program that demonstrates key concepts such as variables, input/output operations, and arithmetic calculations. The program allows users to input two numbers, performs addition, and displays the result. Overall, it serves as an introduction to the basic structure of Python programming.

Uploaded by

rockibul.islam
Copyright
© All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
2 views1 page

Basic Python Program Report

This report outlines the fundamentals of Python programming and presents a simple program that demonstrates key concepts such as variables, input/output operations, and arithmetic calculations. The program allows users to input two numbers, performs addition, and displays the result. Overall, it serves as an introduction to the basic structure of Python programming.

Uploaded by

rockibul.islam
Copyright
© All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd

Subject: Basic Python Program

1. Objective

The objective of this report is to understand the fundamentals of Python


programming and to develop a simple program that demonstrates basic concepts
such as variables, input/output operations, and arithmetic calculations.

2. Introduction

Python is a high-level, interpreted programming language known for its simplicity and
readability. It is widely used in web development, data analysis, artificial intelligence, and
automation.

3. Description

In this report, a basic Python program is developed that takes input from the user and
performs a simple arithmetic operation. The program demonstrates:
• Taking input from the user
• Using variables
• Performing calculations
• Displaying output

4. Implementation / Code

# Basic Python Program: Addition of Two Numbers


# Taking input from user
num1 = float(input("Enter first number: "))
num2 = float(input("Enter second number: "))
# Performing addition
sum_result = num1 + num2
# Displaying result
print("The sum is:", sum_result)

5. Input / Output

Sample Input:
Enter first number: 10
Enter Second
number:20

Sample Output:
The sum is: 30.0

6. Conclusion

This program helps to understand the basic structure of Python programming


including input, processing, and output.

You might also like