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

Python Notes

Uploaded by

zihad.ahmed001
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)
9 views1 page

Python Notes

Uploaded by

zihad.ahmed001
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

Python Programming Notes (Bangla + English)

1. Introduction to Python
English: Python is a high-level, interpreted programming language that is easy to learn and widely
used for web development, data science, AI, and more. Bangla: Python ■■■■ ■■■■ ■■■■■■
(high-level) ■■■■, ■■■■ ■■■■■ ■■■ ■■■ ■■■■■■■ ■■■■ ■■■■■■■ ■■■ ■■■ ■■■■
web development, data science, AI ■■■■■■■■

2. Environment Setup
English: Install Python from [Link] and set up an editor like VS Code or PyCharm. Bangla:
Python ■■■■■■■ ■■■■ ■■■ [Link] ■■■■ ■■■ VS Code / PyCharm ■■ ■■■ editor
■■■■■■■ ■■■■ ■■■■

10. Math related Library functions (Module & Functions)


English: Python has built-in math module for mathematical operations. Bangla: Python-■ ■■■■
■■■■■■■■■ ■■■ ■■■■ ■■■■ math module ■■■■■■■ ■■■ ■■■■

Examples of Math Module:


Using sqrt() function

import math
print([Link](16))

Output: 4.0

Using pow() function

import math
print([Link](2, 3))

Output: 8.0

Using floor() function

import math
print([Link](4.9))

Output: 4

Using ceil() function

import math
print([Link](4.1))

Output: 5

You might also like