Vla_DOS

Untitled

Jan 13th, 2023
81
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.10 KB | None | 0 0
  1. str = '6+4/7*2'
  2. print(str)
  3. for i in str:
  4.     if i.isnumeric():
  5.         i = 'x'
  6.     print(i, end='')
Advertisement
Add Comment
Please, Sign In to add comment