Python

Let’s learn some basic technique, a python program for beginners

Basic knowledge for beginners

  1. List:
    Data type in ordered array based on indexing, using a symbol “[]”
    (Component could be modified afterward, Support Indexing/Slicing)
  2. Tuple:
    Data type in ordered array based on indexing using a symbol “()”
    (Components couldn’t be modified afterward, Support Indexing/Slicing)
  3. Dictionary:
    A hash type data type that has a key and a value as a pair “{key1:value1, key2:value2}
  4. Import Library:
    Utilize functions from separated python files  “import moduleName”
    How to define File path  ” TBD “

 

 

Continued…