How to open JUPYTER NOTEBOOK from the folder it is saved in
- Select the address bar (where your python file is saved)
- Type cmd
- When cmd opens, type "jupyter notebook"
Summary
- Int
- Float
- String '' Ordered Immutable
- List [] ordered Mutable
- Tuple () Ordered Immutable
- Dictionary {} Unordered Mutable
- Sets {} Unordered Mutable
- Boolean True, False
To check the datatype of a variable type(varName)
Text Type : str Numeric Type : int, float, complex Sequence Type : list, tuple, range Mapping Type : dict Set Type : set, frozenset Boolean Type : bool Binary Type : bytes, bytesarray, memoryview