Guest User

Untitled

a guest
Jun 19th, 2018
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.25 KB | None | 0 0
  1. import datetime
  2. def printTimeStamp(name):
  3. print('Автор програми: ' + name)
  4. print('Час компіляції: ' + str(datetime.datetime.now()))
  5.  
  6. name = input("Please enter your name: ")
  7. print("Hello, " + name + "!")
  8.  
  9. printTimeStamp("dasha")
Add Comment
Please, Sign In to add comment