New pages
Jump to navigation
Jump to search
- 15:52, 24 March 2025 Unit test - start of reverse polish notation class (hist | edit) [3,606 bytes] WikiSysop (talk | contribs) (Created page with "These are the two files, I made in class for unit test demo purposes. My original class in the file: ReversePolishCalc.py <pre> class ReversePolishCalc: def __init__(self): self.stack = list() def _checkstack(self, count): if len(self.stack) < count: raise IndexError("Stack does not contain enough elements to perform operaation") def push(self, vector): if isinstance(vector, (int, float, str)): vector = [...")
- 17:12, 17 January 2025 Programme - Spring 2024 (hist | edit) [2,113 bytes] WikiSysop (talk | contribs) (Created page with "'''Collection of files''' used in the exercises and lessons - all gathered here. * M 29/01 Lesson 1: Unix * T 01/02 More lecture on Unix * M 05/02 Lesson 2: Python Recap and Objects * T 08/02 Official talk about Random numbers * M 12/02 Lesson 3: Regular Expressions * T 15/02 Continuing lesson * M 19/02 Lesson 4: Making Functions * T 22/02 Unofficial talk about Garbage Collection in Python * M 26/02 Lesson 5: Advanced Data Structures and New Da...")