1 2 3 4 5 6 7 8 9 10 11 12 13 14
from text import TextPage def hiscore_screen(name): return TextPage( f" New High Score!\n" f"\n" f"\n" f"Please give name:\n" f"\n" f"\n" f"{name:^17s}", font = '8x8', size = (16_000, 16_000), pos = (24_000, 32_000) )