Here is the code.Please help me correct it.
#!/usr/bin/env python
import sys
def print5times(line_to_print):
        for count in range(0,5) :
                print line_to_print
print5times(sys.argv[1])
when running this code i am getting this error:
 Traceback (most recent call last):
   File "./func.py", line 9, in <module>
     print5times(sys.argv[1])
 IndexError: list index out of range
 
     
     
     
    