Learn Python Coding
38.7K subscribers
1.06K photos
37 videos
24 files
853 links
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
Download Telegram
πŸ“š Advanced Data Structures and Algorithms (2023)

1⃣ Join Channel Download:
https://t.me/+MhmkscCzIYQ2MmM8

2⃣ Download Book: https://t.me/c/1854405158/88

πŸ’¬ Tags: #DataStructures #Algorithms

USEFUL CHANNELS FOR YOU
πŸ‘5❀‍πŸ”₯1
πŸ“š Data Structures with Python (2023)

1⃣ Join Channel Download:
https://t.me/+MhmkscCzIYQ2MmM8

2⃣ Download Book: https://t.me/c/1854405158/89

πŸ’¬ Tags: #DataStructures

USEFUL CHANNELS FOR YOU
πŸ‘4❀‍πŸ”₯1
πŸ“š Data Structures the Fun Way (2022)

1⃣ Join Channel Download:
https://t.me/+MhmkscCzIYQ2MmM8

2⃣ Download Book: https://t.me/c/1854405158/160

πŸ’¬ Tags: #DataStructures

USEFUL CHANNELS FOR YOU
πŸ‘6❀1πŸ‘1
πŸ“š Linked Data (2023)

1⃣ Join Channel Download:
https://t.me/+MhmkscCzIYQ2MmM8

2⃣ Download Book: https://t.me/c/1854405158/171

πŸ’¬ Tags: #DataStructures

USEFUL CHANNELS FOR YOU
πŸ‘6❀2
Open Guide to Data Structures and Algorithms

A must-read for anyone starting their journey in computer science and programming. This open-access book offers a clear, beginner-friendly introduction to the core concepts of data structures and algorithms, with simple explanations and practical examples. Whether you're a student or a self-learner, this guide is a solid foundation to build your DSA knowledge. Highly recommended for those who want to learn efficiently and effectively.

Read it here:
https://pressbooks.palni.org/anopenguidetodatastructuresandalgorithms

#DSA #Algorithms #DataStructures #ProgrammingBasics #CSforBeginners #OpenSourceLearning #CodingJourney #TechEducation #ComputerScience #PythonBeginners

⚑️ BEST DATA SCIENCE CHANNELS ON TELEGRAM 🌟
Please open Telegram to view this post
VIEW IN TELEGRAM
πŸ‘4πŸ”₯2
Topic: Python List vs Tuple β€” Differences and Use Cases

---

Key Differences

β€’ Lists are mutable β€” you can change, add, or remove elements.

β€’ Tuples are immutable β€” once created, they cannot be changed.

---

Creating Lists and Tuples

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/DataScience4
❀2
Topic: Linked Lists in Python – Part 1: Introduction and Singly Linked List Basics

---

What is a Linked List?

β€’ A linked list is a linear data structure where each element (called a node) contains:

β€’ The data value.
β€’ A pointer (or reference) to the next node.

β€’ Unlike arrays, linked lists don’t require contiguous memory and can grow dynamically.

---

Why Use Linked Lists?

β€’ Efficient insertions/deletions at the beginning or middle.
β€’ No need for pre-defining size, unlike arrays.
β€’ Used in memory-efficient applications like OS kernels, compilers, and real-time systems.

---

Types of Linked Lists

β€’ Singly Linked List – Each node points to the next.
β€’ Doubly Linked List – Nodes have next and previous pointers.
β€’ Circular Linked List – The last node points back to the head.

---

Basic Structure of a Node

class Node:
def __init__(self, data):
self.data = data
self.next = None


---

Building a Singly Linked List

class LinkedList:
def __init__(self):
self.head = None

def append(self, data):
new_node = Node(data)

if not self.head:
self.head = new_node
return

current = self.head
while current.next:
current = current.next
current.next = new_node


---

Traversing the List

def display(self):
current = self.head
while current:
print(current.data, end=" -> ")
current = current.next
print("None")


Usage:

ll = LinkedList()
ll.append(10)
ll.append(20)
ll.append(30)
ll.display() # Output: 10 -> 20 -> 30 -> None


---

Inserting at the Beginning

def insert_at_beginning(self, data):
new_node = Node(data)
new_node.next = self.head
self.head = new_node


---

Summary

β€’ A singly linked list stores data as a sequence of nodes linked by references.

β€’ Supports dynamic memory usage, fast insertions, and flexible resizing.

β€’ The key is managing node connections safely and efficiently.

---

Exercise

β€’ Implement a method length() that returns the number of nodes in the list.

---

#DataStructures #LinkedList #DSA #Python #CodingBasics

https://t.me/DataScience4
❀3