Learn Python Coding
Learn Python through simple, practical examples and real coding ideas. Clear explanations, useful snippets, and hands-on learning for anyone starting or improving their programming skills. Admin: @HusseinSheikho || @Hussein_Sheikho
Ko'proq ko'rsatishš Telegram kanali Learn Python Coding analitikasi
Learn Python Coding (@pythonre) Ingliz til segmentidagi kanali faol ishtirokchi. Hozirda hamjamiyat 40 123 obunachidan iborat bo'lib, Texnologiyalar & Aralashmalar toifasida 3 250-o'rinni va Hindiston mintaqasida 9 587-o'rinni egallagan.
š Auditoriya koārsatkichlari va dinamika
Š½ŠµŠ²ŃŠ“омо sanasidan buyon loyiha tez oāsib, 40 123 obunachiga ega boāldi.
01 Sentabr, 2026 dagi oxirgi maālumotlarga koāra kanal barqaror faollikka ega. Oxirgi 30 kunda obunachilar soni 146 ga, soānggi 24 soatda esa 9 ga oāzgardi va umumiy qamrov yuqori darajada qolmoqda.
- Tasdiqlash holati: Tasdiqlanmagan
- Jalb etish (ER): Auditoriya oārtacha 1.86% darajada jalb etiladi. Nashrdan keyingi dastlabki 24 soatda kontent odatda umumiy obunachilar sonining 1.08% ini tashkil etuvchi reaksiyalarni toāplaydi.
- Post qamrovi: Har bir post oārtacha 748 marta koāriladi; birinchi sutkada odatda 435 ta koārish yigāiladi.
- Reaksiyalar va oāzaro taāsir: Auditoriya faol: har bir postga oārtacha 2 ta reaksiya keladi.
- Tematik yoānalishlar: Kontent math, harvard, oxford, supervision, waybienad kabi asosiy mavzularga jamlangan.
š Tavsif va kontent siyosati
Muallif resursni shaxsiy fikrni ifoda etish maydoni sifatida taāriflaydi:
āLearn Python through simple, practical examples and real coding ideas. Clear explanations, useful snippets, and hands-on learning for anyone starting or improving their programming skills.
Admin: @HusseinSheikho || @Hussein_Sheikhoā
Yuqori yangilanish chastotasi (oxirgi maālumot 02 Sentabr, 2026 da olingan) sababli kanal doimo dolzarb va katta qamrovli boālib qoladi. Analitika auditoriya kontent bilan faol hamkorlik qilishini, uni Texnologiyalar & Aralashmalar toifasidagi muhim taāsir nuqtasiga aylantirishini koārsatadi.
my_list = [1, 2, 3]
my_tuple = (1, 2, 3)
---
When to Use Each
⢠Use lists when you need a collection that can change over time.
⢠Use tuples when the collection should remain constant, providing safer and faster data handling.
---
Common Tuple Uses
⢠Returning multiple values from a function.
def get_coordinates():
return (10, 20)
x, y = get_coordinates()
⢠Using as keys in dictionaries (since tuples are hashable, lists are not).
---
Converting Between Lists and Tuples
list_to_tuple = tuple(my_list)
tuple_to_list = list(my_tuple)
---
Performance Considerations
⢠Tuples are slightly faster than lists due to immutability.
---
Summary
⢠Lists: mutable, dynamic collections.
⢠Tuples: immutable, fixed collections.
⢠Choose based on whether data should change or stay constant.
---
\#Python #Lists #Tuples #DataStructures #ProgrammingTips
https://t.me/DataScience4try:
result = 10 / 0
except ZeroDivisionError:
print("Cannot divide by zero!")
---
Catching Multiple Exceptions
try:
x = int(input("Enter a number: "))
result = 10 / x
except (ValueError, ZeroDivisionError) as e:
print(f"Error occurred: {e}")
---
Using Else and Finally
⢠else block runs if no exceptions occur.
⢠finally block always runs, used for cleanup.
try:
file = open("data.txt", "r")
data = file.read()
except FileNotFoundError:
print("File not found.")
else:
print("File read successfully.")
finally:
file.close()
---
Raising Exceptions
⢠You can raise exceptions manually using raise.
def check_age(age):
if age < 0:
raise ValueError("Age cannot be negative.")
check_age(-1)
---
Custom Exceptions
⢠Create your own exception classes by inheriting from Exception.
class MyError(Exception):
pass
def do_something():
raise MyError("Something went wrong!")
try:
do_something()
except MyError as e:
print(e)
---
Summary
⢠Use try-except to catch and handle errors.
⢠Use else and finally for additional control.
⢠Raise exceptions to signal errors.
⢠Define custom exceptions for specific needs.
---
#Python #ExceptionHandling #Errors #Debugging #ProgrammingTipsclass Person:
def __init__(self, name, age):
self.name = name
self.age = age
def greet(self):
print(f"Hello, my name is {self.name} and I am {self.age} years old.")
---
Creating Objects
person1 = Person("Alice", 30)
person1.greet() # Output: Hello, my name is Alice and I am 30 years old.
---
Key Concepts
⢠Class: Blueprint for creating objects.
⢠Object: Instance of a class.
⢠`__init__` method: Constructor that initializes object attributes.
⢠`self` parameter: Refers to the current object instance.
---
Adding Methods
class Circle:
def __init__(self, radius):
self.radius = radius
def area(self):
return 3.1416 * self.radius ** 2
circle = Circle(5)
print(circle.area()) # Output: 78.54
---
**Inheritance**
⢠Allows a class to inherit attributes and methods from another class.
class Animal:
def speak(self):
print("Animal speaks")
class Dog(Animal):
def speak(self):
print("Woof!")
dog = Dog()
dog.speak() # Output: Woof!
---
Summary
⢠Classes and objects are core to Python OOP.
⢠Use `class` keyword to define classes.
⢠Initialize attributes with `__init__` method.
⢠Objects are instances of classes.
⢠Inheritance enables code reuse and polymorphism.
---
#Python #OOP #Classes #Objects #ProgrammingConcepts
import functools
import logging
def log(level=logging.INFO):
def decorator(func):
@functools.wraps(func)
def wrapper(*args, **kwargs):
logging.log(level, f"Call {func.__name__} with args={args}, kwargs={kwargs}")
return func(*args, **kwargs)
return wrapper
return decorator
@log(logging. DEBUG)
def compute(x, y):
return x + y
ā
Why you need it:
The decorator is flexibly adjustable;
Suitable for prod tracing and debugging in maiden;
Retains the signature and docstring thanks to @functools.wraps.
ā ļø Tip: avoid nesting >2 levels and always write tests for decorator behavior.
Python gives you tools that look like magic, but work stably if you know how to use them.