Practice day 8 of Learning Python for Data Science
Test your understanding of Python Data Structure, which we learned in our previous lesson of Day 8 of Learning Python for Data Science, with these targeted practice questions.
Welcome back to Day 8 of Learning Python for Data Science journey! In the last article, we explored:
✅ Local Scope
✅ Enclosing Scope
✅ Global Scope
✅ Built-in Scope
Now, it’s time to solve the practice questions given in the previous article.
Each question is followed by a detailed explanation and output.
Understanding Python Functions and Object-Oriented Programming (OOP)
Functions provide modularity, code reusability, and better readability. They help in breaking complex programs into smaller, manageable parts, reducing redundancy and making debugging easier.
The return
statement is used to send a value back to the caller from a function. It terminates the function execution and allows the returned value to be used elsewhere.
def square(num):
return num * num
result = square(5)
print(result) # Output: 25
def greet(name): # 'name' is a parameter
print("Hello, " + name)
greet("Alice") # "Alice" is an argument
Lambda functions are anonymous functions that can have multiple arguments but only one expression.
square = lambda x: x * x
print(square(4)) # Output: 16
A variable inside a function has local scope and cannot be accessed outside the function unless explicitly returned or defined as global.
def example():
local_var = "I exist only inside this function"
print(local_var)
example()
# print(local_var) # This would cause an error
A class is defined using the class
keyword and serves as a blueprint for objects.
class Car:
def __init__(self, brand):
self.brand = brand
my_car = Car("Toyota")
print(my_car.brand) # Output: Toyota
__init__
method in a class?The __init__
method initializes an object’s attributes when an instance of the class is created.
An object is created by calling the class as if it were a function.
my_car = Car("Ford")
class Example:
class_var = "Shared"
def __init__(self, value):
self.instance_var = value
Functions improve modularity, code reusability, and clarity.
Lambda functions are anonymous and can only contain a single expression, while regular functions can have multiple statements.
def sum_list(numbers):
return sum(numbers)
print(sum_list([1, 2, 3, 4])) # Output: 10
factorial_iterative()
function to handle invalid inputs.def factorial_iterative(n):
if not isinstance(n, int) or n < 0:
return "Invalid input"
result = 1
for i in range(1, n + 1):
result *= i
return result
map()
function work, and when should you use it?map()
applies a function to all items in an iterable.
nums = [1, 2, 3]
squared = list(map(lambda x: x**2, nums))
print(squared) # Output: [1, 4, 9]
is_prime = lambda x: all(x % i != 0 for i in range(2, int(x**0.5) + 1)) if x > 1 else False
print(is_prime(7)) # Output: True
def filter_words(words):
return list(filter(lambda word: len(word) >= 4, words))
print(filter_words(["apple", "is", "good"])) # Output: ['apple', 'good']
def fibonacci(n):
if n <= 0:
return "Invalid input"
if n == 1:
return 0
if n == 2:
return 1
return fibonacci(n-1) + fibonacci(n-2)
print(fibonacci(6)) # Output: 5
Higher-order functions improve code flexibility, conciseness, and readability by allowing functions to be passed as arguments.
map()
and filter()
, providing an example for each.nums = [1, 2, 3]
squared = list(map(lambda x: x**2, nums))
print(squared) # Output: [1, 4, 9]
nums = [1, 2, 3, 4, 5]
even_nums = list(filter(lambda x: x % 2 == 0, nums))
print(even_nums) # Output: [2, 4]
This article covers the fundamental aspects of functions and OOP in Python. Mastering these concepts will help in writing efficient and modular code for real-world applications.
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…
Welcome to Day 9 of Learning Python for Data Science. Today we will explore comprehensions,…
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…