Day 9 of Learning Python for Data Science - Queries Related To Functions In Python
Welcome to Day 9 of Learning Python for Data Science. Today we will explore comprehensions, dictionary comprehensions, and lambda functions — powerful tools that help write cleaner and more concise code. These features enable efficient data transformation and manipulation, especially when working with large datasets. In this article, we’ll cover list and dictionary comprehensions, introduce lambda (anonymous) functions, and see how they are used in real-world data science applications.
Day 8 of Learning Python for Data Science – All About Functions In Python
lis = [i**2 for i in range(1, 11)]
print(lis)
lis = [i for i in range(1, 51) if i % 3 == 0 and i % 5 == 0]
print(lis)
sentence = "Given a sentence, create a list of the length of each word in the sentence using list comprehension"
word_lengths = [len(word) for word in sentence.split()]
print(word_lengths)
numbers = [1, 2, 3, 4, 5, 6, 7, 8, 9, 10]
even_numbers = [num for num in numbers if num % 2 == 0]
print(even_numbers)
matrix = [[1, 2, 3], [4, 5, 6], [7, 8, 9]]
flat_list = [num for sublist in matrix for num in sublist]
print(flat_list)
diction = {i: i**2 for i in range(1, 6)}
print(diction)
keys = ['a', 'b', 'c']
values = [1, 2, 3]
diction = {keys[i]: values[i] for i in range(len(keys))}
print(diction)
original_dict = {'a': 1, 'b': 2, 'c': 3, 'd': 4}
filtered_dict = {k: v for k, v in original_dict.items() if v > 2}
print(filtered_dict)
nested_list = [['a', 1], ['b', 2], ['c', 3]]
d = {k: v for k, v in nested_list}
print(d)
my_tuple = (10, 20, 30, 40)
print(my_tuple[1])
add = lambda x, y: x + y
print(add(5, 2))
square = lambda x: x**2
print(square(2))
map()
to Apply a Lambda Function to a Listnumbers = [1, 2, 3, 4, 5]
squares = list(map(lambda x: x**2, numbers))
print(squares)
filter()
to Extract Even Numbers from a Listnumbers = [1, 2, 3, 4, 5]
even_numbers = list(filter(lambda x: x % 2 == 0, numbers))
print(even_numbers)
List comprehensions, dictionary comprehensions, and lambda functions provide powerful tools for data processing in Python. These techniques help simplify code while maintaining efficiency. Understanding these fundamental concepts is essential for anyone working with data in Python.
We hope this article was helpful for you and you learned a lot about data analyst interview from it. If you have friends or family members who would find it helpful, please share it to them or on social media.
Join our social media for more.
Python for Data Science Python for Data Science Python for Data Science Python for Data Science Python for Data Science Python for Data Science Python for Data Science Python for Data Science
Hi, I am Vishal Jaiswal, I have about a decade of experience of working in MNCs like Genpact, Savista, Ingenious. Currently i am working in EXL as a senior quality analyst. Using my writing skills i want to share the experience i have gained and help as many as i can.
NumPy Array in Python is a powerful library for numerical computing in Python. It provides…
Test your understanding of Python Data Structure, which we learned in our previous lesson of…
Welcome to Day 8 of Learning Python for Data Science. Today we will explore Functions…
Test your understanding of Python Data Structure, which we learned in our previous lesson of…
Introduction Welcome to Day 7 of Learning Python for Data Science. Today we will see…
Welcome back to Day 6 of Learning Python for Data Science journey! In the last…