Advertisement
KodingKid

Another way to print messages in Python, using strings! - Basic Scripting #30

Jun 23rd, 2021
221
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.09 KB | None | 0 0
  1. str a = "This is a "
  2. print(+ a "message.")
  3. str b = "message."
  4. print("This is a " + b)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement