Advertisement
simeonshopov

Print Name (functions/book)

Nov 14th, 2019
126
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.09 KB | None | 0 0
  1. def print_name(name):
  2.   print(f"Hello, {name}!")
  3.  
  4.  
  5. name =  input()
  6.  
  7. print_name(name)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement