Python - 3
Python - 3: Strings & Text
Strings are pieces of text in Python. Text is placed inside quotation marks.
👀 Show Example Solution
message = "Welcome to Softwarestack!"
print(message)
first_name = "Jamie"
last_name = "Lee"
print(first_name + " " + last_name)
print("I love coding!")