Giter VIP home page Giter VIP logo

fabianacampanari / object-oriented-programming Goto Github PK

View Code? Open in Web Editor NEW
5.0 1.0 2.0 12.01 MB

๐Ÿงฌ Here you'll find OOP exercises, exams, notes, and environment setup instructions relevant to the curriculum covered in class.

Home Page: https://github.com/FabianaCampanari/Object-Oriented-Programming

License: Apache License 2.0

Python 72.56% Swift 27.44%
pip3 pipenv python3 homebrew oriented-object-programming pep8 design-patterns encryption-decryption modules package

object-oriented-programming's Introduction


๐Ÿงฌ Object Oriented Programming

Welcome to the Object Oriented Programming repository for the Analysis and Systems Development Program at Impacta Technology University - Sรฃo Paulo - Brazil! Here you'll find exercises, exams, notes, and environment setup instructions relevant to the curriculum covered in class. Feel free to explore, contribute, and learn together with your peers.

๐Ÿ˜Ž Happy coding!

< made with vibe, frequency & joy /> ๐Ÿชฌ

๐Ÿ‘จโ€๐Ÿ’ป An Example of OOP Code

The code below provides a simple framework for managing different types of bank accounts, including savings and investment accounts, and allows for basic operations like deposits and withdrawals. The InvestmentAccount class extends the functionality of the base BankAccount class to handle specific investment-related actions.
Bank_Accounts_Framework

๐Ÿ› ๏ธ Additional options available in the development environment

  • Command to Install Flake8 in Your Development Environment

    py -m pip install flake8              # Windows
    
    python3 -m pip install flake8         # Linux and MacOS
    
  • Command to Install pep8-naming in Your Development Environment

    py -m pip install pep8-naming         # Windows
    
    python3 -m pip install pep8-naming    # Linux and MacOS
    
  • Set of Commands Adding Options to a JSON Configuration File

    {
    "python.linting.pylintEnabled": false,
    "python.linting.flake8Enabled": true,
    "editor.renderWhitespace": "boundary",
    }
    

๐Ÿ–ฅ๏ธ Creating a Virtual Environment on IOS and Ubintu - pip and venv

These commands help you manage Python dependencies by creating a virtual environment, saving installed packages to a file, and then installing those packages when needed.
  • List installed Python packages and their versions:

     pip freeze
    
  • Save the list of installed packages to a requirements.txt file:

     pip freeze > requirements.txt
    
  • Deactivate the current virtual environment:

     deactivate
    
  • Create a new virtual environment named .venv:

     python3 -m venv .venv
    
  • Activate the newly created virtual environment:

     source .venv/bin/activate
    
  • Install packages listed in the requirements.txt file:

     pip install -r requirements.txt
    

๐Ÿ‘จโ€๐Ÿ’ป Code for GitHub Actions

Code for a GitHub Actions workflow. It defines how to build and test a Python project.
Screenshot 2023-09-27 at 02 28 33

@property class and its argunents

This docstring provides an explanation of the property class and its constructor, including the optional arguments fget, fset, fdel, and doc, along with descriptions of what each argument does.
Screenshot 2023-09-27 at 02 31 23

๐Ÿ OPP Codes

๐Ÿ“š Support Material Object Oriented Programming in Python

object-oriented-programming's People

Contributors

dependabot[bot] avatar fabianacampanari avatar

Stargazers

 avatar  avatar  avatar  avatar

Watchers

 avatar

object-oriented-programming's Issues

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.