python-CSD-kursu/python-temel/parametre.default.2.py
2023-05-23 18:27:52 +03:00

8 lines
133 B
Python

def disp_banner(s, ch = '-'):
print(ch * len(s))
print(s)
print(ch * len(s))
disp_banner('Ali')
disp_banner('Ali', '*')