Python x y variable

# x Variable
x = "Hello "

# y Variable
y = "Python"

# Print x and y
print(x, y)

Output:

Hello Python