You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

18 lines
281 B

import sys
print('Args:', sys.argv)
if 7 != len(sys.argv):
print('ERROR')
exit()
else:
try:
int(sys.argv[3])
int(sys.argv[4])
int(sys.argv[5])
except Exception as e:
print(e)
print('ERROR')
exit()
print('SUCCESS')