SyntaxFix
Write A Post
Hire A Developer
Questions
For me i made the fallowing as a test.
string_1="abcd" def test(string_1): i = 0 p = "" x = len(string_1) while i < x: y = (string_1)[i] i=i+1 s = chr(ord(y) + 1) p=p+s print(p) test(string_1)