back

Py Selenium

Contents

  1. Schedule
  2. Setup
  3. Introduction To Computers
  4. Introduction to Programming
  5. Input and Output
  6. References

Schedule

Day Date Topics Work
Day 001 08/DEC/25 Intro to Computers  
Day 002 09/DEC/25 Intro to Programming  
Day 003 10/DEC/25 Input & Print  
Day 004 11/DEC/25 Input & Print read & write

Intro

  1. Binary Representation, two bit table
  2. Binary Addition, Adder
  3. Gates, Adder
  4. Components of Computer, CPU, RAM, HDD
  5. CPU, ALU, Registers IO, Memory
  6. RAM Address Space
  7. Simple Add instruction
  8. Von Neumann architecture

Setup

  • Install PyCharm by jet brains or VS Code by Microsoft
  • Download & Install latest version from here Python Release
  • Add installation dir to PATH environment variable.
  • Download & Install VS Code from here VS Code
  • Install Python extension from Marketplace Python Extension
  • Open Command Prompt / Terminal and type ‘python’ to verify installation.

Introduction To Computers

Von Nuemann Architecture Von Nuemann Architecture

Introduction to Programming

  1. Data vs Instructions
  2. Data
    • Primitive
    • Non Primitive (Collection / Arrays)
  3. Instructions
    • OOPS
    • Procedural
    • Functional
    • Functions
      • Pre defined
      • User defined
  4. Introduction to Python
    • History
    • Python 2 vs 3
    • Interpreted vs Compiled
    • Script mode vs Interactive Mode

Input and Output

- Save python file  \<file_name\>.py
- Run code using: py file_name.py \| python file_name.py \| python3 file_name.py
- Input Syntax, Return type str, -> input("enter your name: ")
- Print Syntax, Return type None, -> print("Hello World!")

References