Metadata-Version: 2.1
Name: revwordmainsym
Version: 0.0.1
Summary: A python script that reverse a user's input but keeps any symbol at it's original position after the reverse
Home-page: https://github.com/coding-rev
Author: Emmanuel Owusu
Author-email: emmowu10@gmail.com
License: MIT
Keywords: REVERSE,STRING,MANIPULATION
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Description-Content-Type: text/markdown

# ReverseWord MaintainSymbol

A python script that reverse a user's input
but keeps any symbol at it's original position after
the reverse.

-
## Installation
Run the following to install:

```python
pip install revwordmainsym
```

-
## Usage
```python
from revwordmainsym import manipulate

# Manipulate your string, example: "hell@o"
manipulate("hell@o")
> olle@h

```



