Python Resources

Updated on Feb 5 2022

Python Resources

Deborah R. Fowler



BASH and continuing with Object Oriented Programming Introduction

Posted on Nov 4  2018

Two topics will be covered today:

Useful things to know regarding bash:
#!/bin/bash
This line will identify your file as a script written in bash and if you change the permissions you can run it by typing ./nameOfFile
chmod +x nameOfFile
OR
chmod 755 nameOfFile
Helpful sites:



In-class Exercise with OOP