SyntaxFix
Write A Post
Hire A Developer
Questions
It's an ordinary Python list. The exception that you would catch for this is IndexError, but you're better off just checking the length instead.
if len(sys.argv) >= 2: startingpoint = sys.argv[1] else: startingpoint = 'blah'