https://s3-us-west-2.amazonaws.com/secure.notion-static.com/c8a4b475-f638-4505-b7a1-805452f6879c/41a3041c02de23b097fa1c5be788a9eb.gif


1. Printing and the IDE

Creating a flowchart

  1. Lots of raw data
  2. Pre-process
  3. Fit model (mathematical)
  4. Visualise/Graph (expected VS real results)

Automation is a useful process for repetitive, cumbersome and long tasks

Steps to create the program

  1. Specifications/Parameters
  2. Design
  3. Write the code
  4. Test the code (and recursively fix mistakes)
  5. Run

PSEUDOCODE

START

STEPS

END

Program Design

  1. Identify the problem which needs to be solved
  2. Methodic steps and control structures
  3. 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();