debug执行到业务层结束,怎么跳到dao层

2025-03-11 06:25:32
推荐回答(1个)
回答1:

#!/usr/bin/python

# Define a function here.
def temp_convert(var):
try:
return int(var)
except ValueError, Argument:
print "The argument does not contain numbers\n", Argument

# Call above function here.
temp_convert("xyz");