what can you do with a string python code example
Example 1: print string python
str1 = "Hello World"
print(str1)
Example 2: how to create a string of text in python
Example = ("Text Goes Here")
str1 = "Hello World"
print(str1)
Example = ("Text Goes Here")