Kasante95

string concat example

Dec 31st, 2022 (edited)
181
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.08 KB | None | 0 0
  1. greeting = "Hello, "
  2. name = "John"
  3. message = greeting + name
  4. print(message)
Advertisement
Add Comment
Please, Sign In to add comment