1# On a Unix system, the above multi-line string will most likely be the same as: 2str2 = "Roses are red\nViolets are blue" 3 4# On a Windows system, it will most likely be equivalent to: 5str3 = "Roses are red\r\nViolets are blue"
View as plain text