Rendez le python bien

#Pretty python input in console
def prettyPrint():
  print("Enter your name")
  userName = str(input("> "))
  print("\nHello " + userName)
prettyPrint()
ItsDr4g0n