Guest User

Untitled

a guest
Aug 25th, 2023
58
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.09 KB | None | 0 0
  1. def convert_to_epython(prog):
  2.     e = ""
  3.     for c in prog:
  4.         e += "e" if c == "i" else c
  5.     return e
Advertisement
Add Comment
Please, Sign In to add comment