1#string of all ascii caracters
2string = '!\"#$%&\'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\\]^_`abcdefghijklmnopqrstuvwxyz{|}~'
1#Strings in python are surrounded by either single quotation marks, or double quotation marks.
2print("This is a string")
3print('i am also a string')