python-CSD-kursu/python-temel/fonksiyon.parametre.py

7 lines
61 B
Python

def foo(x):
print(type(x))
foo(10)
foo(20.2)
foo('Ali')