├── GUI ├── .gitkeep └── GUI_template.py ├── OOP concepts ├── .gitkeep ├── classdemo.py ├── classes_methodoverloading_demo.py ├── classes_methodoverriding_demo.py ├── function_dynamicargument.py └── nestedfunction.py ├── README.md ├── conditional_statements ├── .gitkeep ├── ifelsepgm.py └── switchcase.py ├── data structures ├── .gitkeep ├── dictionary_templates.py ├── list_methods.py ├── set_methods().py ├── string_methods().py └── tupletolist.py ├── graphs ├── .gitkeep ├── bar_graph.py ├── histogram.py ├── linechart.py ├── piechart.py ├── scatterplot.py ├── smooth_line_matplotlib.py └── spyder_seaborn_template (in making).py ├── history ├── .gitkeep └── history.txt └── loop concepts ├── .gitkeep ├── forlist.py └── whilelist.py /GUI/.gitkeep: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /GUI/GUI_template.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bhav09/python_zero_to_hero/HEAD/GUI/GUI_template.py -------------------------------------------------------------------------------- /OOP concepts/.gitkeep: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /OOP concepts/classdemo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bhav09/python_zero_to_hero/HEAD/OOP concepts/classdemo.py -------------------------------------------------------------------------------- /OOP concepts/classes_methodoverloading_demo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bhav09/python_zero_to_hero/HEAD/OOP concepts/classes_methodoverloading_demo.py -------------------------------------------------------------------------------- /OOP concepts/classes_methodoverriding_demo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bhav09/python_zero_to_hero/HEAD/OOP concepts/classes_methodoverriding_demo.py -------------------------------------------------------------------------------- /OOP concepts/function_dynamicargument.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bhav09/python_zero_to_hero/HEAD/OOP concepts/function_dynamicargument.py -------------------------------------------------------------------------------- /OOP concepts/nestedfunction.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bhav09/python_zero_to_hero/HEAD/OOP concepts/nestedfunction.py -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bhav09/python_zero_to_hero/HEAD/README.md -------------------------------------------------------------------------------- /conditional_statements/.gitkeep: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /conditional_statements/ifelsepgm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bhav09/python_zero_to_hero/HEAD/conditional_statements/ifelsepgm.py -------------------------------------------------------------------------------- /conditional_statements/switchcase.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bhav09/python_zero_to_hero/HEAD/conditional_statements/switchcase.py -------------------------------------------------------------------------------- /data structures/.gitkeep: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /data structures/dictionary_templates.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bhav09/python_zero_to_hero/HEAD/data structures/dictionary_templates.py -------------------------------------------------------------------------------- /data structures/list_methods.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bhav09/python_zero_to_hero/HEAD/data structures/list_methods.py -------------------------------------------------------------------------------- /data structures/set_methods().py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bhav09/python_zero_to_hero/HEAD/data structures/set_methods().py -------------------------------------------------------------------------------- /data structures/string_methods().py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bhav09/python_zero_to_hero/HEAD/data structures/string_methods().py -------------------------------------------------------------------------------- /data structures/tupletolist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bhav09/python_zero_to_hero/HEAD/data structures/tupletolist.py -------------------------------------------------------------------------------- /graphs/.gitkeep: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /graphs/bar_graph.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bhav09/python_zero_to_hero/HEAD/graphs/bar_graph.py -------------------------------------------------------------------------------- /graphs/histogram.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bhav09/python_zero_to_hero/HEAD/graphs/histogram.py -------------------------------------------------------------------------------- /graphs/linechart.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bhav09/python_zero_to_hero/HEAD/graphs/linechart.py -------------------------------------------------------------------------------- /graphs/piechart.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bhav09/python_zero_to_hero/HEAD/graphs/piechart.py -------------------------------------------------------------------------------- /graphs/scatterplot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bhav09/python_zero_to_hero/HEAD/graphs/scatterplot.py -------------------------------------------------------------------------------- /graphs/smooth_line_matplotlib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bhav09/python_zero_to_hero/HEAD/graphs/smooth_line_matplotlib.py -------------------------------------------------------------------------------- /graphs/spyder_seaborn_template (in making).py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bhav09/python_zero_to_hero/HEAD/graphs/spyder_seaborn_template (in making).py -------------------------------------------------------------------------------- /history/.gitkeep: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /history/history.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bhav09/python_zero_to_hero/HEAD/history/history.txt -------------------------------------------------------------------------------- /loop concepts/.gitkeep: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /loop concepts/forlist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bhav09/python_zero_to_hero/HEAD/loop concepts/forlist.py -------------------------------------------------------------------------------- /loop concepts/whilelist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bhav09/python_zero_to_hero/HEAD/loop concepts/whilelist.py --------------------------------------------------------------------------------