String Basics





Can you add a space? What doesn't Mrs. Wright Like about these variable names?
Last updated





Last updated
x = "Python is "
y = "awesome"
z = x + y
print(z)a = "Hello"
b = "World"
c = a + b
print(c)