mirror of
https://github.com/Hizenberg469/Python-tutorial.git
synced 2026-04-19 23:12:24 +03:00
7 lines
96 B
Python
7 lines
96 B
Python
import pdb
|
|
|
|
def add(num1 , num2):
|
|
pdb.set_trace()
|
|
return num1 + num2
|
|
|
|
add(4, 'hfdksfsl') |