├── 01_class(Hello world_String) ├── README.md ├── Screenshot 2023-10-16 at 10.34.08 PM.png ├── class1.ipynb ├── class1.py ├── image-1.png ├── image-2.png └── requirements.txt ├── 02_class(string_fstring) ├── README.md ├── class2.ipynb └── class2.py ├── 03_class(operators) ├── Whiteboard[1]-01.png ├── Whiteboard[2]-01.png ├── class3.ipynb ├── class3.py └── readme.md ├── 04_class(list_its_methods) ├── README.md ├── class4.ipynb └── class4.py ├── 05_class(list_tuple_for_loop) ├── class5.ipynb ├── class5.py └── readme.md ├── 06_class(if_elif_else) ├── README.md ├── class6.ipynb └── class6.py ├── 07_class(Dictionary) ├── README.md ├── class7.ipynb └── class7.py ├── 08_class(dictionary) ├── README.md ├── app.py └── class8.ipynb ├── 09_class(loop_input) ├── README.md ├── class9.ipynb └── class9.py ├── 10_class(functions) ├── (extra resource)Advanced_Python_Functions_Enhanced_2.ipynb ├── README.md ├── class10.ipynb └── class10.py ├── 11_class(try-except) ├── README.md ├── class11.ipynb └── class11.py ├── 12_class(Error_and_File_Handling ├── README.md ├── abc.txt ├── abc1.txt ├── abc2.txt ├── abc3.txt ├── abc4.txt ├── audio.wav ├── class12.ipynb ├── class12.py ├── data.csv ├── demo.xlsx ├── img1.jpeg ├── mypdf.pdf └── py12.png ├── 13_class(OOP) ├── README.md ├── class13.ipynb └── class13.py ├── 14_class(OOPAdvance) ├── README.md └── class14.ipynb ├── 15_class(Encapsolation_Abstract_callable) ├── README.md ├── class15.ipynb ├── example.ipynb ├── piaic │ ├── __pycache__ │ │ └── genai.cpython-312.pyc │ ├── genai.py │ └── qasim │ │ ├── __pycache__ │ │ └── my_code.cpython-312.pyc │ │ └── my_code.py └── zia.py ├── 16_class(Numpy_nptyping) ├── README.md ├── class16.ipynb └── examples.ipynb ├── 17_class(pandas) ├── README.md ├── class17.ipynb ├── data_set1.xlsx ├── examples.ipynb └── meeting_saved_chat.txt ├── 18_class(pandas_column_functions) ├── README.md ├── class18.ipynb └── student.csv ├── 19_class(PandasAI) ├── README.md ├── cache │ ├── cache_db.db │ └── cache_db.db.wal ├── class19.ipynb ├── examples.ipynb └── pandasai.log ├── LICENSE └── README.md /01_class(Hello world_String)/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panaverse/learn-modern-python/HEAD/01_class(Hello world_String)/README.md -------------------------------------------------------------------------------- /01_class(Hello world_String)/Screenshot 2023-10-16 at 10.34.08 PM.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panaverse/learn-modern-python/HEAD/01_class(Hello world_String)/Screenshot 2023-10-16 at 10.34.08 PM.png -------------------------------------------------------------------------------- /01_class(Hello world_String)/class1.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panaverse/learn-modern-python/HEAD/01_class(Hello world_String)/class1.ipynb -------------------------------------------------------------------------------- /01_class(Hello world_String)/class1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panaverse/learn-modern-python/HEAD/01_class(Hello world_String)/class1.py -------------------------------------------------------------------------------- /01_class(Hello world_String)/image-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panaverse/learn-modern-python/HEAD/01_class(Hello world_String)/image-1.png -------------------------------------------------------------------------------- /01_class(Hello world_String)/image-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panaverse/learn-modern-python/HEAD/01_class(Hello world_String)/image-2.png -------------------------------------------------------------------------------- /01_class(Hello world_String)/requirements.txt: -------------------------------------------------------------------------------- 1 | mypy -------------------------------------------------------------------------------- /02_class(string_fstring)/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panaverse/learn-modern-python/HEAD/02_class(string_fstring)/README.md -------------------------------------------------------------------------------- /02_class(string_fstring)/class2.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panaverse/learn-modern-python/HEAD/02_class(string_fstring)/class2.ipynb -------------------------------------------------------------------------------- /02_class(string_fstring)/class2.py: -------------------------------------------------------------------------------- 1 | name : str = "Muhammad Qasim" 2 | print(name) 3 | -------------------------------------------------------------------------------- /03_class(operators)/Whiteboard[1]-01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panaverse/learn-modern-python/HEAD/03_class(operators)/Whiteboard[1]-01.png -------------------------------------------------------------------------------- /03_class(operators)/Whiteboard[2]-01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panaverse/learn-modern-python/HEAD/03_class(operators)/Whiteboard[2]-01.png -------------------------------------------------------------------------------- /03_class(operators)/class3.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panaverse/learn-modern-python/HEAD/03_class(operators)/class3.ipynb -------------------------------------------------------------------------------- /03_class(operators)/class3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panaverse/learn-modern-python/HEAD/03_class(operators)/class3.py -------------------------------------------------------------------------------- /03_class(operators)/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panaverse/learn-modern-python/HEAD/03_class(operators)/readme.md -------------------------------------------------------------------------------- /04_class(list_its_methods)/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panaverse/learn-modern-python/HEAD/04_class(list_its_methods)/README.md -------------------------------------------------------------------------------- /04_class(list_its_methods)/class4.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panaverse/learn-modern-python/HEAD/04_class(list_its_methods)/class4.ipynb -------------------------------------------------------------------------------- /04_class(list_its_methods)/class4.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panaverse/learn-modern-python/HEAD/04_class(list_its_methods)/class4.py -------------------------------------------------------------------------------- /05_class(list_tuple_for_loop)/class5.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panaverse/learn-modern-python/HEAD/05_class(list_tuple_for_loop)/class5.ipynb -------------------------------------------------------------------------------- /05_class(list_tuple_for_loop)/class5.py: -------------------------------------------------------------------------------- 1 | print([i**2 for i in range(1,11)]) -------------------------------------------------------------------------------- /05_class(list_tuple_for_loop)/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panaverse/learn-modern-python/HEAD/05_class(list_tuple_for_loop)/readme.md -------------------------------------------------------------------------------- /06_class(if_elif_else)/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panaverse/learn-modern-python/HEAD/06_class(if_elif_else)/README.md -------------------------------------------------------------------------------- /06_class(if_elif_else)/class6.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panaverse/learn-modern-python/HEAD/06_class(if_elif_else)/class6.ipynb -------------------------------------------------------------------------------- /06_class(if_elif_else)/class6.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panaverse/learn-modern-python/HEAD/06_class(if_elif_else)/class6.py -------------------------------------------------------------------------------- /07_class(Dictionary)/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panaverse/learn-modern-python/HEAD/07_class(Dictionary)/README.md -------------------------------------------------------------------------------- /07_class(Dictionary)/class7.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panaverse/learn-modern-python/HEAD/07_class(Dictionary)/class7.ipynb -------------------------------------------------------------------------------- /07_class(Dictionary)/class7.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panaverse/learn-modern-python/HEAD/07_class(Dictionary)/class7.py -------------------------------------------------------------------------------- /08_class(dictionary)/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panaverse/learn-modern-python/HEAD/08_class(dictionary)/README.md -------------------------------------------------------------------------------- /08_class(dictionary)/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panaverse/learn-modern-python/HEAD/08_class(dictionary)/app.py -------------------------------------------------------------------------------- /08_class(dictionary)/class8.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panaverse/learn-modern-python/HEAD/08_class(dictionary)/class8.ipynb -------------------------------------------------------------------------------- /09_class(loop_input)/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panaverse/learn-modern-python/HEAD/09_class(loop_input)/README.md -------------------------------------------------------------------------------- /09_class(loop_input)/class9.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panaverse/learn-modern-python/HEAD/09_class(loop_input)/class9.ipynb -------------------------------------------------------------------------------- /09_class(loop_input)/class9.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panaverse/learn-modern-python/HEAD/09_class(loop_input)/class9.py -------------------------------------------------------------------------------- /10_class(functions)/(extra resource)Advanced_Python_Functions_Enhanced_2.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panaverse/learn-modern-python/HEAD/10_class(functions)/(extra resource)Advanced_Python_Functions_Enhanced_2.ipynb -------------------------------------------------------------------------------- /10_class(functions)/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panaverse/learn-modern-python/HEAD/10_class(functions)/README.md -------------------------------------------------------------------------------- /10_class(functions)/class10.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panaverse/learn-modern-python/HEAD/10_class(functions)/class10.ipynb -------------------------------------------------------------------------------- /10_class(functions)/class10.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panaverse/learn-modern-python/HEAD/10_class(functions)/class10.py -------------------------------------------------------------------------------- /11_class(try-except)/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panaverse/learn-modern-python/HEAD/11_class(try-except)/README.md -------------------------------------------------------------------------------- /11_class(try-except)/class11.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panaverse/learn-modern-python/HEAD/11_class(try-except)/class11.ipynb -------------------------------------------------------------------------------- /11_class(try-except)/class11.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panaverse/learn-modern-python/HEAD/11_class(try-except)/class11.py -------------------------------------------------------------------------------- /12_class(Error_and_File_Handling/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panaverse/learn-modern-python/HEAD/12_class(Error_and_File_Handling/README.md -------------------------------------------------------------------------------- /12_class(Error_and_File_Handling/abc.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /12_class(Error_and_File_Handling/abc1.txt: -------------------------------------------------------------------------------- 1 | Pakistan zinda badWE love our country! -------------------------------------------------------------------------------- /12_class(Error_and_File_Handling/abc2.txt: -------------------------------------------------------------------------------- 1 | Pakistan -------------------------------------------------------------------------------- /12_class(Error_and_File_Handling/abc3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panaverse/learn-modern-python/HEAD/12_class(Error_and_File_Handling/abc3.txt -------------------------------------------------------------------------------- /12_class(Error_and_File_Handling/abc4.txt: -------------------------------------------------------------------------------- 1 | line3 -------------------------------------------------------------------------------- /12_class(Error_and_File_Handling/audio.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panaverse/learn-modern-python/HEAD/12_class(Error_and_File_Handling/audio.wav -------------------------------------------------------------------------------- /12_class(Error_and_File_Handling/class12.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panaverse/learn-modern-python/HEAD/12_class(Error_and_File_Handling/class12.ipynb -------------------------------------------------------------------------------- /12_class(Error_and_File_Handling/class12.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /12_class(Error_and_File_Handling/data.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panaverse/learn-modern-python/HEAD/12_class(Error_and_File_Handling/data.csv -------------------------------------------------------------------------------- /12_class(Error_and_File_Handling/demo.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panaverse/learn-modern-python/HEAD/12_class(Error_and_File_Handling/demo.xlsx -------------------------------------------------------------------------------- /12_class(Error_and_File_Handling/img1.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panaverse/learn-modern-python/HEAD/12_class(Error_and_File_Handling/img1.jpeg -------------------------------------------------------------------------------- /12_class(Error_and_File_Handling/mypdf.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panaverse/learn-modern-python/HEAD/12_class(Error_and_File_Handling/mypdf.pdf -------------------------------------------------------------------------------- /12_class(Error_and_File_Handling/py12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panaverse/learn-modern-python/HEAD/12_class(Error_and_File_Handling/py12.png -------------------------------------------------------------------------------- /13_class(OOP)/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panaverse/learn-modern-python/HEAD/13_class(OOP)/README.md -------------------------------------------------------------------------------- /13_class(OOP)/class13.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panaverse/learn-modern-python/HEAD/13_class(OOP)/class13.ipynb -------------------------------------------------------------------------------- /13_class(OOP)/class13.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panaverse/learn-modern-python/HEAD/13_class(OOP)/class13.py -------------------------------------------------------------------------------- /14_class(OOPAdvance)/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panaverse/learn-modern-python/HEAD/14_class(OOPAdvance)/README.md -------------------------------------------------------------------------------- /14_class(OOPAdvance)/class14.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panaverse/learn-modern-python/HEAD/14_class(OOPAdvance)/class14.ipynb -------------------------------------------------------------------------------- /15_class(Encapsolation_Abstract_callable)/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panaverse/learn-modern-python/HEAD/15_class(Encapsolation_Abstract_callable)/README.md -------------------------------------------------------------------------------- /15_class(Encapsolation_Abstract_callable)/class15.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panaverse/learn-modern-python/HEAD/15_class(Encapsolation_Abstract_callable)/class15.ipynb -------------------------------------------------------------------------------- /15_class(Encapsolation_Abstract_callable)/example.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panaverse/learn-modern-python/HEAD/15_class(Encapsolation_Abstract_callable)/example.ipynb -------------------------------------------------------------------------------- /15_class(Encapsolation_Abstract_callable)/piaic/__pycache__/genai.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panaverse/learn-modern-python/HEAD/15_class(Encapsolation_Abstract_callable)/piaic/__pycache__/genai.cpython-312.pyc -------------------------------------------------------------------------------- /15_class(Encapsolation_Abstract_callable)/piaic/genai.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panaverse/learn-modern-python/HEAD/15_class(Encapsolation_Abstract_callable)/piaic/genai.py -------------------------------------------------------------------------------- /15_class(Encapsolation_Abstract_callable)/piaic/qasim/__pycache__/my_code.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panaverse/learn-modern-python/HEAD/15_class(Encapsolation_Abstract_callable)/piaic/qasim/__pycache__/my_code.cpython-312.pyc -------------------------------------------------------------------------------- /15_class(Encapsolation_Abstract_callable)/piaic/qasim/my_code.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panaverse/learn-modern-python/HEAD/15_class(Encapsolation_Abstract_callable)/piaic/qasim/my_code.py -------------------------------------------------------------------------------- /15_class(Encapsolation_Abstract_callable)/zia.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panaverse/learn-modern-python/HEAD/15_class(Encapsolation_Abstract_callable)/zia.py -------------------------------------------------------------------------------- /16_class(Numpy_nptyping)/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panaverse/learn-modern-python/HEAD/16_class(Numpy_nptyping)/README.md -------------------------------------------------------------------------------- /16_class(Numpy_nptyping)/class16.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panaverse/learn-modern-python/HEAD/16_class(Numpy_nptyping)/class16.ipynb -------------------------------------------------------------------------------- /16_class(Numpy_nptyping)/examples.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panaverse/learn-modern-python/HEAD/16_class(Numpy_nptyping)/examples.ipynb -------------------------------------------------------------------------------- /17_class(pandas)/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panaverse/learn-modern-python/HEAD/17_class(pandas)/README.md -------------------------------------------------------------------------------- /17_class(pandas)/class17.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panaverse/learn-modern-python/HEAD/17_class(pandas)/class17.ipynb -------------------------------------------------------------------------------- /17_class(pandas)/data_set1.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panaverse/learn-modern-python/HEAD/17_class(pandas)/data_set1.xlsx -------------------------------------------------------------------------------- /17_class(pandas)/examples.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panaverse/learn-modern-python/HEAD/17_class(pandas)/examples.ipynb -------------------------------------------------------------------------------- /17_class(pandas)/meeting_saved_chat.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panaverse/learn-modern-python/HEAD/17_class(pandas)/meeting_saved_chat.txt -------------------------------------------------------------------------------- /18_class(pandas_column_functions)/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panaverse/learn-modern-python/HEAD/18_class(pandas_column_functions)/README.md -------------------------------------------------------------------------------- /18_class(pandas_column_functions)/class18.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panaverse/learn-modern-python/HEAD/18_class(pandas_column_functions)/class18.ipynb -------------------------------------------------------------------------------- /18_class(pandas_column_functions)/student.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panaverse/learn-modern-python/HEAD/18_class(pandas_column_functions)/student.csv -------------------------------------------------------------------------------- /19_class(PandasAI)/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panaverse/learn-modern-python/HEAD/19_class(PandasAI)/README.md -------------------------------------------------------------------------------- /19_class(PandasAI)/cache/cache_db.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panaverse/learn-modern-python/HEAD/19_class(PandasAI)/cache/cache_db.db -------------------------------------------------------------------------------- /19_class(PandasAI)/cache/cache_db.db.wal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panaverse/learn-modern-python/HEAD/19_class(PandasAI)/cache/cache_db.db.wal -------------------------------------------------------------------------------- /19_class(PandasAI)/class19.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panaverse/learn-modern-python/HEAD/19_class(PandasAI)/class19.ipynb -------------------------------------------------------------------------------- /19_class(PandasAI)/examples.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panaverse/learn-modern-python/HEAD/19_class(PandasAI)/examples.ipynb -------------------------------------------------------------------------------- /19_class(PandasAI)/pandasai.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panaverse/learn-modern-python/HEAD/19_class(PandasAI)/pandasai.log -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panaverse/learn-modern-python/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panaverse/learn-modern-python/HEAD/README.md --------------------------------------------------------------------------------