1
2f'Hello, {name}' is the same as 'Hello, {}'.format(name) # if name is 'Mark', this outputs 'Hello, Mark'
3b'This string is a byte string, it is stored as bytes and not as characters'
4u'This is a Unicode string and is redundant in python 3.3 and above'
5r'This is a raw string, so \n will be read as \n and not as a newline'
6