1. Printing and the IDE
Creating a flowchart
- Lots of raw data
- Pre-process
- identify and fill gaps (if it's real data it's prone to mistakes)
- Fit model (mathematical)
- Visualise/Graph (expected VS real results)
Automation is a useful process for repetitive, cumbersome and long tasks
Steps to create the program
- Specifications/Parameters
- Design
- Write the code
- Test the code (and recursively fix mistakes)
- Run
PSEUDOCODE
START
STEPS
END
Program Design
- Identify the problem which needs to be solved
- Methodic steps and control structures
- Make it readable with comments and spacing
Print() and Bin() Functions
#Use this function to visualise output words in the console
print();
#To print several repetitive strings
print("some string" * 10);
#Use this function to covert decimal numbers to binary
bin();