Skip to content

Latest commit

 

History

History
21 lines (13 loc) · 632 Bytes

File metadata and controls

21 lines (13 loc) · 632 Bytes

Stack-Simulator

A basic GUI made with PyQt5, emulates how the stack data structure works. You can push, pop and clear the stack.
You can see the changes taking effect thanks to the QTextBrowser widget being updated.


How to use it

make sure to install the PyQt5 package in your environment, you can use:

pip install pyqt5

Once installed download and run my file.


What I learned

  • I can use PyQt5 for GUI development using Python
  • Learned about widgets, Layouts, and action events
  • Reading the respective documentation is the best move you can do when using/learning the package's syntax;