If your Pygame code runs in Pyodide with no error but no output, it's likely because:
Standard Pygame doesn't work in browsers. Use pygame-ce or pygame-cffi (WebAssembly-compatible).
You must run it inside a browser canvas, not a desktop window.
Ensure you use pygame.display.set_mode(), a game loop, and pygame.display.flip() to show output.