def greet(name="student"): print(f" hello, {name}! welocome to python course.") greet() greet("ayya") **My first program using function It is very simple compare to for and while loops