Warning: Undefined array key 0 in /var/www/tgoop/function.php on line 65

Warning: Trying to access array offset on value of type null in /var/www/tgoop/function.php on line 65
892 - Telegram Web
Telegram Web
Python Basics

πŸ”Ή Variables = Store data for use in a program
x = 1

print(x) # Output: 1
πŸ”Ή Data Types = Classification of data (Boolean, String, Number)
number = 10

if number > 0:

print("The number is true") # Output: true



πŸ”Ή Operators = Symbols for performing operations (+, -, *, /, %, etc.)
print(1 + 2) # Output: 3

print(2 - 1) # Output: 1
πŸ”Ή Control Statements = Manage program execution flow

βœ” Conditional Statements β†’ "if-then" logic
score = 85

if score >= 90:

print("Excellent")

elif score >= 75:

print("Good job")

else:

print("Keep trying")
βœ” Loop Statements β†’ Repeat actions (for, while loops)
count = 1

while count <= 5:

print(count)

count += 1

πŸ”Ή Functions = Reusable blocks of code
def my_function():

print("Hello from a function")

my_function() # Output: Hello from a function
πŸ‘3
Python Question / Quiz

What is the output of the following python code?
πŸ‘3
Answer the question
Anonymous Quiz
38%
A
26%
B
15%
C
22%
D
Pandas Methods for Machine Learning
πŸ‘4
Convert JSON into Python Object
πŸ‘1πŸ”₯1
Remove Punctuation From a String in Python
πŸ”₯2
Text to Speech Using Python
πŸ”₯4❀1
Number System Conversion
πŸ”₯5
any() and all() function in python
πŸ”₯3
Creating a Table using Python
πŸ‘8
Python File Method
πŸ”₯7
Learn how to Encrypt PDF files using Python
❀6
Map Function in Python
πŸ‘6πŸ”₯1
Python Roadmaps from Beginner to Advanced Level
❀4
While Loop in Python
❀8
Generate QR codes in Python
❀4πŸ‘2πŸ”₯1
Generate a Piechart in Python using the Matplot Library
❀5
Python String Formatting Based on Placeholders
❀3
Python LAMBDA function (Basic Syntax)
πŸ”₯5❀1
Transform a real image to Pencil Sketch using Python
❀5πŸ‘1
2025/07/14 01:45:49
Back to Top
HTML Embed Code: