1.py 225 B

12345678910111213
  1. import os
  2. def printName():
  3. "Prints the name Viktor Grahn"
  4. print("Viktor Grahn")
  5. return
  6. # Clear screen
  7. os.system("clear") # Mac or Linux
  8. # os.system("cls") # Windows
  9. # Call to function printName()
  10. printName()