79275164

Date: 2024-12-12 12:50:49
Score: 1
Natty:
Report link

Simplest way to make M into a P:

ch = 'M'
 
# Using chr()+ord()
# prints P
x = chr(ord(ch) + 3)
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Orwa Ogwari