Metadata-Version: 2.1
Name: reversed_name
Version: 0.0.1
Summary: UNKNOWN
Home-page: UNKNOWN
Author: SangDoo Nam
License: UNKNOWN
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown
License-File: LICENSE


```markdown
# Reversed Name Function

This Python script contains a function `reversed_name` that prompts the user for their name, reverses the characters in the name, and then greets the user with their name reversed.

## Description

The `reversed_name` function asks the user to input their name. It then reverses the order of the characters in the name and prints a greeting using the reversed name.

## Getting Started

### Dependencies

- Python 3.x

### Installing

- No installation required. You only need Python installed on your system.
- Download the script file or copy the code into a new Python file on your machine.

### Executing program

- Run the script using Python interpreter.

```bash
python reversed_name.py
```

- Follow the prompt to enter your name.
- The script will display a greeting with your name reversed.

## Authors

Your Name  
Contact: [YourEmail@example.com](mailto:YourEmail@example.com)

## Version History

* 0.1
    * Initial Release

## License

This project is open-source and free to use.

## Acknowledgments

Inspiration:
* Basic Python scripting
* String manipulation in Python


