char = 'A'intValue = ord(char)# intValue is 65intValue += 1charB = chr(intValue)# charB is 'B'print(f"{intValue = }")print(f"{charB = }")