A python module converts infix expressions to postfix expressions and includes a visual interface.
Project description
InfixToPostfix
A python module converts infix expressions to postfix expressions and includes a visual interface.
Table of Contents
Install
pip install InfixToPostfix
Usage
No visual interface
from InfixToPostfix.infix_to_postfix import InfixToPostfix
infix_to_postfix = InfixToPostfix()
expression = "a+b-(12.3*cde/(10%2^3))"
words, actions, states, result = infix_to_postfix.analyze(expression)
print(words, actions, states, result, sep="\n")
With visual interface
import sys
from PyQt6.QtWidgets import QApplication
from InfixToPostfix.ui import MainWindow
app = QApplication(sys.argv)
window = MainWindow()
sys.exit(app.exec())
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
InfixToPostfix-1.0.1.tar.gz
(17.2 kB
view details)
File details
Details for the file InfixToPostfix-1.0.1.tar.gz
.
File metadata
- Download URL: InfixToPostfix-1.0.1.tar.gz
- Upload date:
- Size: 17.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.11.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 79f59d2c994568e0b4dcb23fb0919e073e54d9071b8f8fdc9a2898197e31dded |
|
MD5 | b06046f668cd0b406ad0e1bf923b243e |
|
BLAKE2b-256 | cc512acbec5882391c6e401e08c0f3ae377c200eca708779126a20c82991247a |