import os def printName(): "Prints the name Viktor Grahn" print("Viktor Grahn") return # Clear screen os.system("clear") # Mac or Linux # os.system("cls") # Windows # Call to function printName() printName()