python-CSD-kursu/python-temel/type_error.py~

7 lines
90 B
Python

def foo():
return 10 + 'ali'
try:
print('enters the try statement...')
foo()