# Signal processing - Filter and analyze data
from scipy import signal
# Design & apply Butterworth filter
sos = signal.butter(4, 100, 'lp', fs=1000, output='sos')
filtered = signal.sosfilt(sos, np.random.randn(1000))
# Spectral analysis (FFT)
freqs, psd = signal.welch(np.sin(2*np.pi*50*np.linspace(0,1,1000)) + np.random.randn(1000), fs=1000)
print(freqs[np.argmax(psd)]) # Output: ~50.0 (peak frequency)
# Convolution (image processing)
kernel = np.ones(5)/5
smoothed = signal.convolve([1,2,3,4,5,4,3,2,1], kernel, mode='valid')
print(smoothed) # Output: [2. 3. 4. 4. 4. 3. 2.]
# Sparse matrices - Handle massive datasets
from scipy import sparse
# Create CSR matrix (memory efficient)
row = np.array([0, 0, 1, 2, 2])
col = np.array([0, 2, 1, 0, 2])
data = np.array([1, 2, 3, 4, 5])
sparse_mat = sparse.csr_matrix((data, (row, col)), shape=(3, 3))
# Matrix operations (100x faster than dense for sparse data)
dense_equivalent = sparse_mat.toarray()
print(sparse_mat.dot([1, 2, 3])) # Output: [11 6 19]
# Real-world use: PageRank algorithm
adjacency = sparse.random(1000, 1000, density=0.01, format='csr')
# Spatial data structures - Nearest neighbor search
from scipy import spatial
# KD-Tree for fast queries (critical for ML interviews)
points = np.random.rand(100, 2)
tree = spatial.KDTree(points)
# Find 5 nearest neighbors
distances, indices = tree.query([0.5, 0.5], k=5)
print(indices) # Output: [23 45 17 89 12] (closest point indices)
# Voronoi diagrams (geospatial analysis)
vor = spatial.Voronoi(points)
print(vor.vertices.shape) # Output: (196, 2) (Voronoi vertices)
# File I/O - Work with scientific data formats
from scipy import io
# Save/load MATLAB files
mat_data = {'x': np.arange(10), 'y': np.random.rand(10)}
io.savemat('data.mat', mat_data)
loaded = io.loadmat('data.mat')
print(loaded['x']) # Output: [[0 1 2 ... 9]]
# Read WAV audio files
from scipy.io import wavfile
sample_rate, audio = wavfile.read('audio.wav')
print(sample_rate) # Output: 44100 (CD quality)
# Image processing - Beyond basic operations
from scipy import ndimage
# Load sample image (requires imageio)
# image = io.imread('sample.jpg', as_gray=True)
# Apply Gaussian blur
# blurred = ndimage.gaussian_filter(image, sigma=1)
# Edge detection (Sobel filter)
# edges = ndimage.sobel(image, axis=0)
# Morphological operations
# eroded = ndimage.binary_erosion(image > 0.5)
# Advanced optimization - Constrained problems
from scipy import optimize
# Minimize with constraints (interview gold)
def objective(x):
return (x[0] - 1)**2 + (x[1] - 2.5)**2
constraints = ({
'type': 'ineq',
'fun': lambda x: np.array([x[0] - 2*x[1] + 2, x[0]**2 + x[1]**2 - 1])
})
bounds = optimize.Bounds([0, -2], [2, 2])
result = optimize.minimize(objective, [0, 0], bounds=bounds, constraints=constraints)
print(result.x) # Output: [1.4, 1.7] (constrained minimum)
# Statistical modeling - Regression analysis
from scipy import stats
# Linear regression with confidence intervals
x = np.linspace(0, 10, 100)
y = 2.5 * x + 1.3 + np.random.normal(size=100)
slope, intercept, r_value, p_value, std_err = stats.linregress(x, y)
print(f"Slope: {slope:.2f}±{std_err:.2f}") # Output: Slope: 2.49±0.03
print(f"R²: {r_value**2:.4f}") # Output: R²: 0.9872
# Fourier transforms - Frequency domain analysis
from scipy import fft
# Analyze composite signal
t = np.linspace(0, 1, 1000, endpoint=False)
signal = np.sin(2*np.pi*5*t) + 0.5*np.sin(2*np.pi*10*t)
spectrum = fft.fft(signal)
# Find dominant frequencies
freq = fft.fftfreq(len(t), t[1]-t[0])
print(freq[np.argmax(np.abs(spectrum))]) # Output: 5.0
# Cluster analysis - Unsupervised learning
from scipy import cluster
# Hierarchical clustering (dendrograms)
data = np.random.rand(100, 2)
Z = cluster.hierarchy.linkage(data, 'ward')
# cluster.hierarchy.dendrogram(Z) # Visualize clusters
# Vector quantization (k-means)
codebook, _ = cluster.vq.kmeans(data, 3)
print(codebook.shape) # Output: (3, 2) (3 cluster centers)
# Interview Power Move: Solve differential equations for physics simulations
from scipy import integrate
def rocket(t, y):
"""Model rocket altitude with air resistance"""
altitude, velocity = y
drag = 0.1 * velocity**2
return [velocity, -9.8 + 0.5*drag] # Thrust assumed constant
sol = integrate.solve_ivp(
rocket,
[0, 10],
[0, 0], # Initial altitude/velocity
dense_output=True
)
print(f"Max altitude: {np.max(sol.y[0]):.2f}m") # Output: ~12.34m
# Pro Tip: Memory-mapped sparse matrices for billion-row datasets
from scipy import sparse
# Create memory-mapped CSR matrix
mmap_mat = sparse.load_npz('huge_matrix.npz', mmap_mode='r')
# Process chunks without loading entire matrix
for i in range(0, mmap_mat.shape[0], 1000):
chunk = mmap_mat[i:i+1000, :]
process(chunk)
By: @DataScienceQ
#Python #SciPy #DataScience #ScientificComputing #MachineLearning #CodingInterview #SignalProcessing #Optimization #Statistics #Engineering #TechJobs #DeveloperTips #CareerGrowth #BigData #AIethics
Please open Telegram to view this post
VIEW IN TELEGRAM
🔥1
In Python, Object-Oriented Programming (OOP) allows you to define classes and create objects with attributes and methods. Classes are blueprints for creating objects, and they support key concepts like inheritance, encapsulation, polymorphism, and abstraction.
#Python #OOP #Classes #Inheritance #Polymorphism #Encapsulation #Programming #ObjectOriented #PythonTips #CodeExamples
By: @DataScienceQ🚀
class Animal:
def __init__(self, name):
self.name = name
def speak(self):
return f"{self.name} makes a sound"
class Dog(Animal):
def speak(self):
return f"{self.name} says Woof!"
class Cat(Animal):
def speak(self):
return f"{self.name} says Meow!"
# Creating instances
dog = Dog("Buddy")
cat = Cat("Whiskers")
print(dog.speak()) # Output: Buddy says Woof!
print(cat.speak()) # Output: Whiskers says Meow!
#Python #OOP #Classes #Inheritance #Polymorphism #Encapsulation #Programming #ObjectOriented #PythonTips #CodeExamples
By: @DataScienceQ
Please open Telegram to view this post
VIEW IN TELEGRAM
👍1🔥1
Why can
frozenset be a key in a dict, but set cannot?Answer:
frozenset is immutable, so its hash can be computed once and used as a key.
set is mutable, its contents can change, so its hash function is unstable, which is why dict does not allow using set as a key.
tags: #interview
https://t.iss.one/DataScienceQ
Please open Telegram to view this post
VIEW IN TELEGRAM
Telegram
PyData Careers
Python Data Science jobs, interview tips, and career insights for aspiring professionals.
Admin: @HusseinSheikho || @Hussein_Sheikho
Admin: @HusseinSheikho || @Hussein_Sheikho
❤4
Which tasks parallelize well, and which do not?
Answer:
Tasks that heavily load the CPU and actively use memory parallelize poorly. In Python, this is especially noticeable due to the GIL: CPU-bound calculations will still use only one thread, and parallel execution will not provide a speedup. Moreover, due to thread switching, the program may even slow down.
If a task combines IO and heavy processing — for example, downloading and parsing — it is better to separate it: keep IO in threads, and assign CPU load to processes (via multiprocessing) or move it to a queue.
tags: #interview
Please open Telegram to view this post
VIEW IN TELEGRAM
❤1
In Python, a list comprehension is a concise and elegant way to create lists. It allows you to generate a new list by applying an expression to each item in an existing iterable (like a list or range), often in a single line of code, making it more readable and compact than a traditional
Both the loop and the basic list comprehension produce the exact same result: a list of the first 10 square numbers. However, the list comprehension is more efficient and easier to read once you are familiar with the syntax.
#Python #ListComprehension #PythonTips #CodeExamples #Programming #Pythonic #Developer #Code
By: @DataScienceQ🩵
for loop.# Traditional way using a for loop
squares_loop = []
for i in range(10):
squares_loop.append(i i)
print(f"Using a loop: {squares_loop}")
The Pythonic way using a list comprehension
squares_comp = [i i for i in range(10)]
print(f"Using comprehension: {squares_comp}")
You can also add conditions
even_squares = [i * i for i in range(10) if i % 2 == 0]
print(f"Even squares only: {even_squares}")
Both the loop and the basic list comprehension produce the exact same result: a list of the first 10 square numbers. However, the list comprehension is more efficient and easier to read once you are familiar with the syntax.
#Python #ListComprehension #PythonTips #CodeExamples #Programming #Pythonic #Developer #Code
By: @DataScienceQ
Please open Telegram to view this post
VIEW IN TELEGRAM
❤1
Python's List Comprehensions provide a compact and elegant way to create lists. They offer a more readable and often more performant alternative to traditional loops for list creation and transformation.
Output:
#Python #ListComprehensions #PythonTips #CodeOptimization #Programming #DataStructures #PythonicCode
---
By: @DataScienceQ🧡
# Create a list of squares using a traditional loop
squares_loop = []
for i in range(5):
squares_loop.append(i i)
print(f"Traditional loop: {squares_loop}")
Achieve the same with a list comprehension
squares_comprehension = [i i for i in range(5)]
print(f"List comprehension: {squares_comprehension}")
List comprehension with a condition (even numbers only)
even_numbers_squared = [i * i for i in range(10) if i % 2 == 0]
print(f"Even numbers squared: {even_numbers_squared}")
Output:
Traditional loop: [0, 1, 4, 9, 16]
List comprehension: [0, 1, 4, 9, 16]
Even numbers squared: [0, 4, 16, 36, 64]
#Python #ListComprehensions #PythonTips #CodeOptimization #Programming #DataStructures #PythonicCode
---
By: @DataScienceQ
Please open Telegram to view this post
VIEW IN TELEGRAM
In Python, "Magic Methods" (also known as Dunder methods, short for "double underscore") are special methods that allow you to define how objects of your class behave with built-in functions and operators. While
Output:
#Python #MagicMethods #DunderMethods #OOP #Classes #PythonTips #CodeExamples #StringRepresentation #ObjectOrientation #Programming
---
By: @DataScienceQ ✨
init handles object initialization, str and repr are crucial for defining an object's string representation.str: Returns a "user-friendly" string representation of an object, primarily for human readability (e.g., when print() is called).repr: Returns an "official" string representation of an object, primarily for developers, often aiming to be unambiguous and allow recreation of the object.class Book:
def init(self, title, author, year):
self.title = title
self.author = author
self.year = year
def str(self):
return f'"{self.title}" by {self.author} ({self.year})'
def repr(self):
return f"Book('{self.title}', '{self.author}', {self.year})"
Creating an instance
my_book = Book("The Hitchhiker's Guide to the Galaxy", "Douglas Adams", 1979)
str is used by print()
print(my_book)
repr is used by the interpreter or explicitly with repr()
print(repr(my_book))
In collections, repr is used by default
bookshelf = [my_book, Book("Pride and Prejudice", "Jane Austen", 1813)]
print(bookshelf)
Output:
"The Hitchhiker's Guide to the Galaxy" by Douglas Adams (1979)
Book('The Hitchhiker\'s Guide to the Galaxy', 'Douglas Adams', 1979)
[Book('The Hitchhiker\'s Guide to the Galaxy', 'Douglas Adams', 1979), Book('Pride and Prejudice', 'Jane Austen', 1813)]
#Python #MagicMethods #DunderMethods #OOP #Classes #PythonTips #CodeExamples #StringRepresentation #ObjectOrientation #Programming
---
By: @DataScienceQ ✨
✨🐍 Python Tip: Loop with Index using
When you need to iterate through a sequence and also need the index of each item,
Output:
#PythonTips #PythonProgramming #LearnPython #Enumerate #CodingHacks
---
By: @DataScienceQ ✨
enumerate! 🐍✨When you need to iterate through a sequence and also need the index of each item,
enumerate() is your best friend! It's more "Pythonic" and cleaner than manually tracking an index.enumerate() adds a counter to an iterable and returns it as an enumerate object. You can then unpack it directly in your for loop.my_fruits = ["apple", "banana", "cherry", "date"]
Using enumerate() for a clean loop with index
print("--- Looping with default index ---")
for index, fruit in enumerate(my_fruits):
print(f"Fruit at index {index}: {fruit}")
You can also specify a starting index for the counter
print("\n--- Looping with custom start index (e.g., from 1) ---")
for count, fruit in enumerate(my_fruits, start=1):
print(f"Fruit number {count}: {fruit}")
Output:
--- Looping with default index ---
Fruit at index 0: apple
Fruit at index 1: banana
Fruit at index 2: cherry
Fruit at index 3: date
--- Looping with custom start index (e.g., from 1) ---
Fruit number 1: apple
Fruit number 2: banana
Fruit number 3: cherry
Fruit number 4: date
enumerate() makes your loops more readable and prevents common indexing errors. Give it a try!#PythonTips #PythonProgramming #LearnPython #Enumerate #CodingHacks
---
By: @DataScienceQ ✨
Python Tip: Tuple Unpacking for Multiple Assignments
Assigning multiple variables at once from a sequence can be done elegantly using tuple unpacking (also known as sequence unpacking). It's clean and efficient.
Traditional way:
Using Tuple Unpacking:
This also works with lists and functions that return multiple values. It's often used for swapping variables without a temporary variable:
#PythonTip #TupleUnpacking #Assignment #Pythonic #Coding
---
By: @DataScienceQ ✨
Assigning multiple variables at once from a sequence can be done elegantly using tuple unpacking (also known as sequence unpacking). It's clean and efficient.
Traditional way:
coordinates = (10, 20)
x = coordinates[0]
y = coordinates[1]
print(f"X: {x}, Y: {y}")
Using Tuple Unpacking:
coordinates = (10, 20)
x, y = coordinates
print(f"X: {x}, Y: {y}")
This also works with lists and functions that return multiple values. It's often used for swapping variables without a temporary variable:
a = 5
b = 10
a, b = b, a # Swaps values of a and b
print(f"a: {a}, b: {b}") # Output: a: 10, b: 5
#PythonTip #TupleUnpacking #Assignment #Pythonic #Coding
---
By: @DataScienceQ ✨
Combine multiple iterables into one with
Instead of:
Use
#PythonTip #ZipFunction #Iterators #PythonicCode
---
By: @DataScienceQ ✨
zip()!Instead of:
names = ['Alice', 'Bob', 'Charlie']
ages = [30, 24, 35]
for i in range(len(names)):
print(f"{names[i]} is {ages[i]} years old.")
Use
zip() for a cleaner and more Pythonic approach:names = ['Alice', 'Bob', 'Charlie']
ages = [30, 24, 35]
for name, age in zip(names, ages):
print(f"{name} is {age} years old.")
zip() stops when the shortest iterable is exhausted. Perfect for parallel iteration!#PythonTip #ZipFunction #Iterators #PythonicCode
---
By: @DataScienceQ ✨
Python Tip: Mastering
When defining a class in Python,
The
In the
Let's create some cars:
Output:
#PythonTip #OOP #Classes #InitMethod #SelfKeyword #ObjectOriented #PythonProgramming
---
By: @DataScienceQ ✨
init and self in OOP! 🐍When defining a class in Python,
init is a special method (often called the constructor) that gets called automatically every time a new object (instance) of the class is created. It's used to set up the initial state or attributes of that object.The
self parameter is a convention and the first parameter of any instance method. It always refers to the instance of the class itself, allowing you to access its attributes and other methods from within the class.class Car:
def init(self, make, model, year):
self.make = make # Assign 'make' to the instance's 'make' attribute
self.model = model # Assign 'model' to the instance's 'model' attribute
self.year = year # Assign 'year' to the instance's 'year' attribute
def get_description(self):
return f"This is a {self.year} {self.make} {self.model}."
In the
init method, self.make = make means "take the value passed in as make and assign it to the make attribute of this specific Car object."Let's create some cars:
my_car = Car("Toyota", "Camry", 2020)
your_car = Car("Honda", "Civic", 2022)
print(my_car.get_description())
print(your_car.get_description())Output:
This is a 2020 Toyota Camry.
This is a 2022 Honda Civic.
init ensures each object starts with its own data, and self connects you to that data!#PythonTip #OOP #Classes #InitMethod #SelfKeyword #ObjectOriented #PythonProgramming
---
By: @DataScienceQ ✨
Python OOP Tip: Inheritance Basics! 🚀
Inheritance allows a new class (child) to acquire properties and methods from an existing class (parent), promoting code reuse and establishing an "is-a" relationship.
Key Takeaway: Use
#Python #OOP #Inheritance #PythonTips #Programming
---
By: @DataScienceQ ✨
Inheritance allows a new class (child) to acquire properties and methods from an existing class (parent), promoting code reuse and establishing an "is-a" relationship.
class Vehicle:
def init(self, brand):
self.brand = brand
def description(self):
return f"This is a {self.brand} vehicle."
class Car(Vehicle): # Car inherits from Vehicle
def init(self, brand, model):
super().init(brand) # Call parent's constructor
self.model = model
def drive(self):
return f"The {self.brand} {self.model} is driving."
my_car = Car("Toyota", "Camry")
print(my_car.description())
print(my_car.drive())
Key Takeaway: Use
super().init() in a child class to properly initialize parent attributes when overriding the constructor.#Python #OOP #Inheritance #PythonTips #Programming
---
By: @DataScienceQ ✨
❤2
Pandas Python Tip: Custom Column Operations with
The
Key Takeaway:
#Pandas #Python #DataScience #DataManipulation #PythonTips
---
By: @DataScienceQ ✨
apply()! 🚀The
df.apply() method is powerful for applying a function along an axis of the DataFrame (rows or columns), especially useful for custom transformations on columns or rows.import pandas as pd
data = {'Name': ['Alice', 'Bob', 'Charlie'],
'Score': [85, 92, 78]}
df = pd.DataFrame(data)
Example: Create a new column 'Grade' based on 'Score'
def assign_grade(score):
if score >= 90:
return 'A'
elif score >= 80:
return 'B'
else:
return 'C'
df['Grade'] = df['Score'].apply(assign_grade)
print(df)
You can also use lambda functions for simpler operations
df['Score_Double'] = df['Score'].apply(lambda x: x * 2)
print(df)
Key Takeaway:
df.apply() (especially on a Series) is excellent for element-wise custom logic, often more readable than complex vectorized operations for specific tasks.#Pandas #Python #DataScience #DataManipulation #PythonTips
---
By: @DataScienceQ ✨
❤1
🚀 NumPy Tip: Boolean Indexing (Masking) 🚀
Ever need to filter your arrays based on a condition? NumPy's Boolean Indexing, also known as masking, is your go-to! It allows you to select elements that satisfy a specific condition.
Explanation:
A boolean array (the mask) is created by applying a condition to your original array. When this mask is used for indexing, NumPy returns a new array containing only the elements where the mask was
#NumPy #PythonTips #DataScience #ArrayMasking #Python #Programming
---
By: @DataScienceQ ✨
Ever need to filter your arrays based on a condition? NumPy's Boolean Indexing, also known as masking, is your go-to! It allows you to select elements that satisfy a specific condition.
import numpy as np
Create a sample NumPy array
data = np.array([12, 5, 20, 8, 35, 15, 30])
Create a boolean mask: True where value is > 10, False otherwise
mask = data > 10
print("Boolean Mask:", mask)
Apply the mask to the array to filter elements
filtered_data = data[mask]
print("Filtered Data (values > 10):", filtered_data)
You can also combine the condition and indexing directly
even_numbers = data[data % 2 == 0]
print("Even Numbers:", even_numbers)
Explanation:
A boolean array (the mask) is created by applying a condition to your original array. When this mask is used for indexing, NumPy returns a new array containing only the elements where the mask was
True. Simple, powerful, and efficient!#NumPy #PythonTips #DataScience #ArrayMasking #Python #Programming
---
By: @DataScienceQ ✨
Django ORM Tip:
#Django #DjangoORM #Python #Database #Optimization #Fexpressions #CodingTip
---
By: @DataScienceQ ✨
F() Expressions for Database-Level OperationsF() expressions allow you to reference model field values directly within database operations. This avoids fetching data into Python memory, making queries more efficient for updates or comparisons directly on the database.from django.db.models import F
from your_app.models import Product # Assuming a Product model with 'stock' and 'price' fields
Increment the stock of all products by 5 directly in the database
Product.objects.all().update(stock=F('stock') + 5)
Update the price to be 10% higher than the current price
Product.objects.all().update(price=F('price') 1.1)
Filter for products where the stock is less than 10 times its price
low_ratio_products = Product.objects.filter(stock__lt=F('price') 10)
#Django #DjangoORM #Python #Database #Optimization #Fexpressions #CodingTip
---
By: @DataScienceQ ✨
Hey there, fellow Django devs! Ever faced the dreaded "N+1 query problem" when looping through related objects? 😱 Your database might be doing way more work than it needs to!
Let's conquer it with
Example 1: Fetching Posts and their Comments
Imagine a blog where each
Example 2: Prefetching with Custom QuerySets
What if you only want to prefetch approved comments, or order them specifically? You can apply filters and ordering within
Example 3: Nested Prefetching
You can even prefetch related objects of related objects! Let's get posts, their comments, and each comment's author.
Master
#Django #DjangoORM #Python #Optimization #NPlus1 #DatabaseQueries #Performance #WebDev #CodingTip
---
By: @DataScienceQ ✨
Let's conquer it with
prefetch_related()! While select_related() works for one-to-one and foreign key relationships (joining tables directly in SQL), prefetch_related() is your go-to for many-to-many relationships and reverse foreign key lookups (like getting all comments for a post). It performs a separate query for each related set and joins them in Python, saving you tons of database hits and speeding up your app.Example 1: Fetching Posts and their Comments
Imagine a blog where each
Post has many Comments. Without prefetch_related, accessing post.comments.all() inside a loop for multiple posts would hit the database for each post's comments.from your_app.models import Post, Comment # Assuming your models are here
Bad: This would cause N+1 queries if you loop and access comments
posts = Post.objects.all()
for post in posts:
for comment in post.comment_set.all(): # database hit for EACH post
print(comment.text)
Good: Fetches all posts AND all comments in just 2 queries!
posts_with_comments = Post.objects.prefetch_related('comment_set')
for post in posts_with_comments:
print(f"Post: {post.title}")
for comment in post.comment_set.all(): # 'comment_set' is the default related_name
print(f" - {comment.text}")
Example 2: Prefetching with Custom QuerySets
What if you only want to prefetch approved comments, or order them specifically? You can apply filters and ordering within
prefetch_related() using Prefetch objects!from django.db.models import Prefetch
from your_app.models import Post, Comment # Assuming Comment has 'is_approved' and 'created_at'
Define a custom queryset for only approved comments, ordered by creation
approved_comments_queryset = Comment.objects.filter(is_approved=True).order_by('-created_at')
Fetch posts and only their approved comments, storing them in a custom attribute
posts_with_approved_comments = Post.objects.prefetch_related(
Prefetch('comment_set', queryset=approved_comments_queryset, to_attr='approved_comments')
)
for post in posts_with_approved_comments:
print(f"Post: {post.title}")
# Access them via the custom attribute 'approved_comments'
for comment in post.approved_comments:
print(f" - (Approved) {comment.text}")
Example 3: Nested Prefetching
You can even prefetch related objects of related objects! Let's get posts, their comments, and each comment's author.
from your_app.models import Post, Comment # Assuming Comment has a ForeignKey to an Author model
posts_with_nested_relations = Post.objects.prefetch_related(
# Here, we prefetch comments, and within the comments prefetch their authors
Prefetch('comment_set', queryset=Comment.objects.select_related('author'))
)
for post in posts_with_nested_relations:
print(f"\nPost: {post.title}")
for comment in post.comment_set.all():
print(f" - {comment.text} by {comment.author.name}") # Access comment.author directly!
Master
prefetch_related() to make your Django apps lightning fast! ⚡️ Happy coding!#Django #DjangoORM #Python #Optimization #NPlus1 #DatabaseQueries #Performance #WebDev #CodingTip
---
By: @DataScienceQ ✨
💡
#PythonTips #DataStructures #collections #namedtuple #Python
---
By: @DataScienceQ ✨
collections.namedtuple for structured data: Create simple, immutable data structures without boilerplate.from collections import namedtuple
Define a simple Point structure
Point = namedtuple('Point', ['x', 'y'])
Create instances
p1 = Point(10, 20)
p2 = Point(x=30, y=40)
print(f"Point 1: x={p1.x}, y={p1.y}")
print(f"Point 2: {p2[0]}, {p2[1]}") # Access by index
It's still a tuple!
print(f"Is p1 a tuple? {isinstance(p1, tuple)}")
Example with a Person
Person = namedtuple('Person', 'name age city')
person = Person('Alice', 30, 'New York')
print(f"Person: {person.name} is {person.age} from {person.city}")
#PythonTips #DataStructures #collections #namedtuple #Python
---
By: @DataScienceQ ✨
❤1
💡 Python Asyncio Tip: Basic async/await for concurrent operations.
#Python #Asyncio #Concurrency #Programming
---
By: @DataScienceQ ✨
import asyncio
async def say_hello():
await asyncio.sleep(0.1) # Simulate a non-blocking I/O call
print("Hello from async!")
async def main():
await say_hello()
asyncio.run(main())
#Python #Asyncio #Concurrency #Programming
---
By: @DataScienceQ ✨
❤2
🧠 NumPy Quiz: Array Shapes
Question: What will be the output of
A)
B)
C)
D)
✅ Correct answer: B
#NumPy #Python #DataScience #Array #Quiz
---
By: @DataScienceQ ✨
Question: What will be the output of
arr.shape for the NumPy array created by np.zeros((2, 3))?import numpy as np
arr = np.zeros((2, 3))
A)
(3, 2)B)
(2, 3)C)
6D)
(2, 3, 0)✅ Correct answer: B
#NumPy #Python #DataScience #Array #Quiz
---
By: @DataScienceQ ✨
🧠 Quiz: Python
Q: Which of the following is the correct way to define an empty list in Python?
A) my_list = ()
B) my_list = []
C) my_list = {}
D) my_list = "None"
✅ Correct answer: B
Explanation: In Python, lists are defined using square brackets
#Python #DataStructures #Lists
---
By: @DataScienceQ ✨
Q: Which of the following is the correct way to define an empty list in Python?
A) my_list = ()
B) my_list = []
C) my_list = {}
D) my_list = "None"
✅ Correct answer: B
Explanation: In Python, lists are defined using square brackets
[]. An empty list is simply []. Parentheses () define a tuple, and curly braces {} define a set or dictionary.#Python #DataStructures #Lists
---
By: @DataScienceQ ✨