I've been programming Python for a few years. Should have known some of this stuff already, but there's always room to learn more.
raw string vs normal string. Just use the r'' to not have to escape when I don't want to escape. 😄
In [5]: r'\n'
Out[5]: '\\n'
In [6]: '\n'
Out[6]: '\n'