0
Is there any mistake
Ii think there is a mistake please 🥺 find it out https://code.sololearn.com/cl70HpSx2nW4/?ref=app
3 Réponses
+ 8
KARTIK Patel ,
You can check by yourself..
Other hand..
plz describe what error message you're receiving. what you want specific output. Without knowing full information no one can find out errors..
0
def decode_code(code):
"""Decodes the given code.
Args:
code: The code to decode.
Returns:
The decoded code.
"""
decoded_code = ""
for char in code:
decoded_code += chr(ord(char) + 2)
return decoded_code
if __name__ == "__main__":
code = "igbgql_nngleglaclrcpmd_p_`g"
decoded_code = decode_code(code)
print(decoded_code)
0
It runs without any error, what is the problem then?