Python
Python copied to clipboard
#python #greet #programmimglanguage #beginner 🐍🚀✍️
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