• Source
    1. x='hello'
    2. y="hello"
    3. z="I can't wait..."
    4. v='"I will come back" he said...'
    5. print(x)
    6. print(y)
    7. print(z)
    8. print(v)
    9.