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