1
0
mirror of https://github.com/kamranahmedse/developer-roadmap.git synced 2025-08-22 17:02:58 +02:00

Python resources added. (#7293)

This commit is contained in:
Berkcan Gümüşışık
2024-10-03 17:23:45 +03:00
committed by GitHub
parent 1d0e65c2c8
commit 65fe7aeb71
3 changed files with 6 additions and 2 deletions

View File

@@ -1,9 +1,10 @@
# Loops
Loops are used to execute a block of code repeatedly.
Loops are used to execute a block of code repeatedly.
Visit the following resources to learn more:
- [@article@Loops in Python](https://www.geeksforgeeks.org/loops-in-python/)
- [@article@Python "while" Loops (Indefinite Iteration)](https://realpython.com/python-while-loop/)
- [@article@Python "for" Loops (Definite Iteration)](https://realpython.com/python-for-loop/#the-guts-of-the-python-for-loop)
- [@video@Python For Loops](https://www.youtube.com/watch?v=KWgYha0clzw)

View File

@@ -7,3 +7,4 @@ Visit the following resources to learn more:
- [@article@Object Oriented Programming in Python](https://realpython.com/python3-object-oriented-programming/)
- [@video@Object Oriented Programming (OOP) In Python - Beginner Crash Course](https://www.youtube.com/watch?v=-pEs-Bss8Wc/)
- [@video@OOP in Python One Shot](https://www.youtube.com/watch?v=Ej_02ICOIgs)
- [@video@Python OOP Tutorial](https://www.youtube.com/watch?v=IbMDCwVm63M)

View File

@@ -8,4 +8,6 @@ Visit the following resources to learn more:
- [@article@W3Schools — Python Variables](https://www.w3schools.com/python/python_variables.asp)
- [@article@Python Data Types](https://www.w3schools.com/python/python_datatypes.asp)
- [@article@Basic Data Types in Python](https://realpython.com/python-data-types/)
- [@article@Python for Beginners: Data Types](https://thenewstack.io/python-for-beginners-data-types/)
- [@article@Python for Beginners: Data Types](https://thenewstack.io/python-for-beginners-data-types/)
- [@video@Python Variables and Data Types](https://www.youtube.com/playlist?list=PLBlnK6fEyqRhN-sfWgCU1z_Qhakc1AGOn)