tür kontrolü 2

This commit is contained in:
Mert Gör 🇹🇷 2023-05-25 08:01:26 +03:00
parent 04685c88b0
commit 60422edd8d
No known key found for this signature in database
GPG Key ID: 2100A876D55B39B9

View File

@ -0,0 +1,9 @@
def disp_banner(s, ch = '-'):
if isinstance(s, int):
s = str(s)
print(ch * len(s))
print(s)
print(ch * len(s))
disp_banner('ankara')
disp_banner(120)