opdb/step3/test03.py

9 lines
142 B
Python

def out_hello():
print('start')
temp='ready'
print('ok')
res = test(temp)
print('end')
def test(p):
p+p+1
return p