Advertisement
Guest User

Untitled

a guest
Oct 21st, 2019
98
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.23 KB | None | 0 0
  1. my_first_name = "John"
  2. my_last_name = "Doe"
  3.  
  4. # A function that takes in 2 strings and concatenates them along with a space in between
  5. def full_name(first, last):
  6. print(first + " " + last)
  7.  
  8.  
  9. full_name(my_first_name, my_last_name)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement