Ad
  • Custom User Avatar

    you look like you're just picking up python, so I'm going to try to give you some tips.

    1. the list wrapped around your string.split isn't necessary. that function will return a list itself
    2. the for i in range(len(...)): pattern is considered bad form. try using for word in inpStr: instead.