Computational chemistry is a broad field, even more nowadays with increasing number of machine learning applications related to chemistry.
Python is a high-level programming language which is convenient for learning computer science concepts and quickly developing small programs to implement in computational chemistry.
This is a beginner tutorial on how to code in jupyter which is an interactive computing environment which is convenient for use in scientific computing on all operating systems.
In this video we learn
The four collection data types in the Python programming language:
List is a collection which is ordered and changeable. Allows duplicate members.
Tuple is a collection which is ordered and unchangeable. Allows duplicate members.
Set is a collection which is unordered and unindexed. No duplicate members.
Dictionary is a collection which is unordered, changeable and indexed. No duplicate members.