def Escape(s1, s2, s3):
s="Python\tRaw\nString\tConcept"
print(s1+"\n"+s2+"\n"+s3)
print(s1+"\t"+s2+"\t"+s3)
print(s)
print(r"Python\tRaw\nString\tConcept")# r is raw string
This blog has content related to python programing language and Automation with python and hacker rank solutions , leet code solution
Comments
Post a Comment