1.
Write a program to create a function that takes two arguments, name and age, and print their
value.
# demo is the function name Output :
def demo(name, age): Ben 25
# print value
print(name, age)
# call function
demo("Ben", 25)
Output:
S="welcome" HELLO@wlcome
def change(T):
T="HELLO"
print(T,end='@')
change(S)
print(S)
def process(x): output
x=72 75
return x+3;
y=0
res=process(y)
print(res)