Description
In this course you will
- Learn about code reuse with Python functions. Apply that knowledge to create functions for famous physics formulas
- Learn how to build control flow into your python code by including if, else, and elif statements as well as try and except statements. Expect to learn all you need to know about boolean variables and logical operators
- Learn about lists, a data structure in Python used to store ordered groups of data
- Learn all about the Python string object. Figure out how to automatically create, rearrange, reassign, disassemble, and reassemble blocks of text
- Learn how modules work in the Python programming language
- Learn all about the Python dictionary structure and how to create and use key-value pairs in your code
- Learn how to work with files in an automated way! Investigate the properties of text, CSV, and JSON files by reading and writing to them
- Learn about the differences between data types in Python and how to create your own classes, objects, and interfaces