├── Week-1 ├── arithmetic.py ├── builtin-functions.py ├── data_types.py ├── hello.py └── variables.py ├── Week-2 ├── arithmetic_operators.py ├── comparison_operators.py ├── conditionals.py ├── data_types.py ├── logical_operators.py ├── notes.md ├── string_sample_excercise.py ├── strings.py └── type-conversion.py ├── Week-3 ├── getting-item-in-list.py ├── list-example.py ├── lists.py ├── modify-list-using-list-method.py ├── modifying-list.py └── notes.md ├── Week-4 ├── for-loop.py ├── functions.py └── while-loop.py └── Week-5 ├── HOF.py ├── dictionaries.py ├── exercises.py ├── functions.py ├── lambda_functions.py ├── list_dictionaries.py ├── notes.md ├── sets.py └── tuple.py /Week-1/arithmetic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Asabeneh/fundamental-python-march-2022/HEAD/Week-1/arithmetic.py -------------------------------------------------------------------------------- /Week-1/builtin-functions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Asabeneh/fundamental-python-march-2022/HEAD/Week-1/builtin-functions.py -------------------------------------------------------------------------------- /Week-1/data_types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Asabeneh/fundamental-python-march-2022/HEAD/Week-1/data_types.py -------------------------------------------------------------------------------- /Week-1/hello.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Asabeneh/fundamental-python-march-2022/HEAD/Week-1/hello.py -------------------------------------------------------------------------------- /Week-1/variables.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Asabeneh/fundamental-python-march-2022/HEAD/Week-1/variables.py -------------------------------------------------------------------------------- /Week-2/arithmetic_operators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Asabeneh/fundamental-python-march-2022/HEAD/Week-2/arithmetic_operators.py -------------------------------------------------------------------------------- /Week-2/comparison_operators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Asabeneh/fundamental-python-march-2022/HEAD/Week-2/comparison_operators.py -------------------------------------------------------------------------------- /Week-2/conditionals.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Asabeneh/fundamental-python-march-2022/HEAD/Week-2/conditionals.py -------------------------------------------------------------------------------- /Week-2/data_types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Asabeneh/fundamental-python-march-2022/HEAD/Week-2/data_types.py -------------------------------------------------------------------------------- /Week-2/logical_operators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Asabeneh/fundamental-python-march-2022/HEAD/Week-2/logical_operators.py -------------------------------------------------------------------------------- /Week-2/notes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Asabeneh/fundamental-python-march-2022/HEAD/Week-2/notes.md -------------------------------------------------------------------------------- /Week-2/string_sample_excercise.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Asabeneh/fundamental-python-march-2022/HEAD/Week-2/string_sample_excercise.py -------------------------------------------------------------------------------- /Week-2/strings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Asabeneh/fundamental-python-march-2022/HEAD/Week-2/strings.py -------------------------------------------------------------------------------- /Week-2/type-conversion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Asabeneh/fundamental-python-march-2022/HEAD/Week-2/type-conversion.py -------------------------------------------------------------------------------- /Week-3/getting-item-in-list.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Asabeneh/fundamental-python-march-2022/HEAD/Week-3/getting-item-in-list.py -------------------------------------------------------------------------------- /Week-3/list-example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Asabeneh/fundamental-python-march-2022/HEAD/Week-3/list-example.py -------------------------------------------------------------------------------- /Week-3/lists.py: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /Week-3/modify-list-using-list-method.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Asabeneh/fundamental-python-march-2022/HEAD/Week-3/modify-list-using-list-method.py -------------------------------------------------------------------------------- /Week-3/modifying-list.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Asabeneh/fundamental-python-march-2022/HEAD/Week-3/modifying-list.py -------------------------------------------------------------------------------- /Week-3/notes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Asabeneh/fundamental-python-march-2022/HEAD/Week-3/notes.md -------------------------------------------------------------------------------- /Week-4/for-loop.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Asabeneh/fundamental-python-march-2022/HEAD/Week-4/for-loop.py -------------------------------------------------------------------------------- /Week-4/functions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Asabeneh/fundamental-python-march-2022/HEAD/Week-4/functions.py -------------------------------------------------------------------------------- /Week-4/while-loop.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Asabeneh/fundamental-python-march-2022/HEAD/Week-4/while-loop.py -------------------------------------------------------------------------------- /Week-5/HOF.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Asabeneh/fundamental-python-march-2022/HEAD/Week-5/HOF.py -------------------------------------------------------------------------------- /Week-5/dictionaries.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Asabeneh/fundamental-python-march-2022/HEAD/Week-5/dictionaries.py -------------------------------------------------------------------------------- /Week-5/exercises.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Asabeneh/fundamental-python-march-2022/HEAD/Week-5/exercises.py -------------------------------------------------------------------------------- /Week-5/functions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Asabeneh/fundamental-python-march-2022/HEAD/Week-5/functions.py -------------------------------------------------------------------------------- /Week-5/lambda_functions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Asabeneh/fundamental-python-march-2022/HEAD/Week-5/lambda_functions.py -------------------------------------------------------------------------------- /Week-5/list_dictionaries.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Asabeneh/fundamental-python-march-2022/HEAD/Week-5/list_dictionaries.py -------------------------------------------------------------------------------- /Week-5/notes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Asabeneh/fundamental-python-march-2022/HEAD/Week-5/notes.md -------------------------------------------------------------------------------- /Week-5/sets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Asabeneh/fundamental-python-march-2022/HEAD/Week-5/sets.py -------------------------------------------------------------------------------- /Week-5/tuple.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Asabeneh/fundamental-python-march-2022/HEAD/Week-5/tuple.py --------------------------------------------------------------------------------