6 lines
90 B
Python
6 lines
90 B
Python
|
|
|
||
|
|
def atoi(v):
|
||
|
|
try:
|
||
|
|
return int(v or 0)
|
||
|
|
except ValueError:
|
||
|
|
return 0
|