goldtech wrote:
Hi,This is undoubtedly a newbie question. How doI assign variables multiline strings? If I try this i get what's cited below. Thanks.d="dddddddddd"dTraceback (most recent call last): File "<interactive input>", line 1, in <module> NameError: name 'd' is not defined
Use a triple-quoted string literal: >>> d = """ddddd ... ddddd""" >>> d 'ddddd\nddddd' -- http://mail.python.org/mailman/listinfo/python-list