python3-quantum/README.md

17 lines
336 B
Markdown
Raw Normal View History

2024-03-15 22:52:07 -06:00
# python3-quantum
2024-03-15 22:59:53 -06:00
_Bring quantum computing to Python!_
2024-03-15 22:52:07 -06:00
2024-03-15 22:59:53 -06:00
Quantum computing is super cool and this package makes it easy to use it in Python 3.
## Install
```shell
2024-03-15 23:05:21 -06:00
pip install pip install git+https://git.evulid.cc/cyberes/python3-quantum
2024-03-15 22:59:53 -06:00
```
## Usage
```python
2024-03-15 23:01:48 -06:00
from quantum.states import tralse
2024-03-15 22:59:53 -06:00
if tralse:
print('Hello world!')
```