>>> '''hello world''' 'hello\nworld' >>> fred=''' hello world''' >>> print(fred) hello world -- http://mail.python.org/mailman/listinfo/python-list
- why the output is different when i am implementig multiline... stringsatif1
>>> '''hello world''' 'hello\nworld' >>> fred=''' hello world''' >>> print(fred) hello world -- http://mail.python.org/mailman/listinfo/python-list