lazy_cod3R
05-06-2001, 03:16 AM
perl has this
print<<DATA;
What i need to print
DATA
what is pythons equivlent ??
thanx
print<<DATA;
What i need to print
DATA
what is pythons equivlent ??
thanx
|
Click to See Complete Forum and Search --> : python printing lazy_cod3R 05-06-2001, 03:16 AM perl has this print<<DATA; What i need to print DATA what is pythons equivlent ?? thanx jemfinch 05-06-2001, 04:40 AM use either """ or ''' (triple single or double quotes) as the multiline string delimiter. Jeremy justlinux.com
Copyright Internet.com Inc. All Rights Reserved. |