Essential Takeaways from Python LC-01
# stings in python : textual datatype
# ways to create a string :
s1='hello'
s2="your's"
s3="""hy this is a multiline string,
i.e it is written on more than one line."""
print(s1)
print(s2)
print(s3)
# accessing elements in a string :
# single e...
tier3totech.hashnode.dev2 min read