Experiment - Ipyndhhueb - Colab
Experiment - Ipyndhhueb - Colab
20.3
count = 11
print("Counter :- ")
while count <= 20:
print(count)
count += 1
Counter :-
11
12
13
14
15
16
17
18
19
20
keyboard_arrow_down Funtion
def greet(name):
print("Hello Mr." + name + "!")
greet("Syed sahib")
def add_num(a,b):
return a+b
add_num(10,34)
44
greet("Syed sahib")