(dp1 S'print' p2 S'\n This command prints all the strings given to it in Python.\n For example, the following statement:\n print "I am a statement"\n will display on the window \'I am a statement\'\n Look up \'\\\' and \'statement\' for more.\n ' p3 sS'\\' S'\n A backslash is useful for manipulating the position of text in\n python. It does not manipulate the text itself, unfortunately,\n which means there is no such thing as italics.\n For example, the following statement:\n print "\\tThis is weird stuff."\n will print out:\n \' This is weird stuff\'\n There are several statements such as \\t for tab.\n Another thing that backslashes do is avoid special characters\n from doing what they would otherwise normally do. For example,\n the following statement:\n print "And he said \\"leave me.\\""\n has this result:\n \'And he said "leave me"\'\n normally, the computer sees the quote-sign as the end of the\n statement, but not when there\'s a backslash before it.\n To print out a backslash, show two in a row:\n print "\\\\"\n results in:\n \'\\\'\n ' p4 sS'tags' p5 S'\n Tags are used to manipulate text in HTML.\n ' p6 s.