Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

@ashutoshpipriye
Created May 27, 2020 07:48
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ashutoshpipriye/bad2923b8dd21dedd962b95d9fdf7558 to your computer and use it in GitHub Desktop.
Save ashutoshpipriye/bad2923b8dd21dedd962b95d9fdf7558 to your computer and use it in GitHub Desktop.
# Write code that combines the following variables so that the sentence
# “You are doing a great job, keep it up!” is assigned to the variable message.
# Do not edit the values assigned to by, az, io, or qy.
by = "You are"
az = "doing a great "
io = "job"
qy = "keep it up!"
message = (by+' '+az+io+','+' '+qy)
print(message)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment