
showFramerate(bool)
- Displays/hides the game frame rate in the game window
bool:
- True or 1:
- Display game frame rate in the game window
- False or 0:
- Don't display game frame rate in the game window

Sample Code
################ display the game frame rate
# import bge module
import bge
# get the render module
rend = bge.render
# display frame rate
rend.showFramerate(True)