Python Text String

From GM-RKB
Revision as of 17:49, 23 September 2021 by Gmelli (talk | contribs) (Text replacement - ". ----" to ". ----")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

A Python Text String is a text string in a Python data structure.



References

2018

my_string = 'Hello'
print(my_string) 
my_string = "Hello" print(my_string)
my_string = Hello print(my_string)
# triple quotes string can extend multiple lines my_string = """Hello, welcome to the world of Python""" print(my_string)