128k views
3 votes
Write any python program using Functions, For and while loop, Dictionaries, Lists, and Class/object.

User InActive
by
8.0k points

1 Answer

4 votes

Final answer:

This Python program demonstrates the use of functions, loops, dictionaries, lists, and class/object.

Step-by-step explanation:

Here is an example of a Python program that uses functions, for and while loops, dictionaries, lists, and class/object:

def add_numbers(a, b):
return a + b

for i in range(5):
print(i)

my_dict = {'apple': 0, 'banana': 1, 'cherry': 2}

my_list = [1, 2, 3, 4, 5]


class MyClass:
def __init__(self, name):
self.name = name

def greet(self):
print('Hello, ' + self.name + '!')

my_obj = MyClass('John')
my_obj.greet()

User Jason Krs
by
7.8k points