How to use python to update user profile description with multiple lines? Using arcgis.gis module | ArcGIS API for Python
I've tried:
for u in range(len(users)):
users[u].update(description='First line' chr(10)'Second line')
for u in range(len(users)):
users[u].update(description='First line' + chr(10)+ 'Second line')
for u in range(len(users)):
users[u].update(description='First line \n Second line')
and every single possible variation of python new line and all I get is

What I need is:

Declaring a string doesn't work either. No matter what, it puts all the text on a single line in the profile.