Ad
  • Default User Avatar

    Question. I came up with a very similar solution. Only difference was I used name.lower()[0] instead of name[0].lower(). I'm not super familar with best practices in terms of performance. But did you choose your solution name[0].lower() because it technically performs quicker than name.lower()[0]?

    Thanks for any insight you can provide!