Run ❯
Get your
own Python
server
×
Change Orientation
Change Theme, Dark/Light
Go to Spaces
#Use "%" to convert the number into a percentage format: txt = "You scored {:%}" print(txt.format(0.25)) #Or, without any decimals: txt = "You scored {:.0%}" print(txt.format(0.25))
You scored 25.000000%
You scored 25%