from sys import argv
 script, first, second, third = argv
 print('The script is called'), 'script'
 print('The first varrible is'), 'first'
 print('The second varrible is'), 'second'
 print('The Third Varrible is'), 'third'
It keeps prompting This Value Error in Spyder
 
     
    