Defining a string¶
Example:
output = "Hello"
print(output)
output = "World"
print(output)
output = "This is a string with quotes ''"
print(output)
Example:
output = "Hello"
print(output)
output = "World"
print(output)
output = "This is a string with quotes ''"
print(output)