"""print("thank you" , end="\n ")
print("thank you" , end=",\n")
print("thank you" , end="????\n\n")
print('Everyone')"""
#print("hello,","world")
#print("hello,\'everyone")
"""s = 'Hey, whats up?'
print(s)"""
"""s = 'Hey, what\'s up?' # without \ there seems to be error
print(s)"""
"""print("C:\\Users\Pat\Desktop") #one extra \ is used
print("C:\\Users\\Pat\\Desktop") #we can also write this way"""
"""print(r"Backslashes \don't need to be escaped in raw strings.") # if this \ is put after string it shows error but if \\ is used no error
print("Backslashes \ don't need to be escaped in raw strings.") # if this \ is put after string it shows error but if \\ is used no error
print(r"There's an unescaped backslash at the end/ of this string") # if this \ is put after string it shows error but if \\ is used no error"""
#print("hello \r satyam \rworld \ryou")#print("hello,\t\t\t\t\v\v\v\v world")
Comments
Post a Comment