One way to do this would be to replace each digit with its double:
2 + 2 = 4
becomes
5 + 5 = 10
In Python, you could write:
print("2 + 2 = 4".replace("2", "5").replace("4", "10"))
This will output:
5 + 5 = 10
Please start posting anonymously - your entry will be published after you log in or create a new account. This space is reserved only for answers. If you would like to engage in a discussion, please instead post a comment under the question or an answer that you would like to discuss
Asked: 2021-08-06 11:00:00 +0000
Seen: 14 times
Last updated: Jun 14 '21
How can I set up Gunicorn with a Django Project?
Looking for a Python Module that finds Tags for a Text describing its Content
Need a Function in Python to remove entries less than 2 digits from an Array
How can I convert a Document in Python?
How can I program a Loop in Python?
How can I enable Python Code Highlighting in Askbot?