1
0
mirror of https://github.com/kamranahmedse/developer-roadmap.git synced 2025-09-01 21:32:35 +02:00

chore: update roadmap content json (#6795)

Co-authored-by: kamranahmedse <kamranahmedse@users.noreply.github.com>
This commit is contained in:
github-actions[bot]
2024-08-29 22:37:38 +06:00
committed by GitHub
parent 4a610a1eea
commit c9729ed073
10 changed files with 198 additions and 69 deletions

View File

@@ -95,6 +95,17 @@
"title": "Type Conversion and Casting",
"url": "https://www.programiz.com/python-programming/type-conversion-and-casting",
"type": "article"
}
]
},
"fNTb9y3zs1HPYclAmu_Wv": {
"title": "Exceptions",
"description": "Python exceptions are events that occur during the execution of a program and disrupt the normal flow of the program's instructions. When an exception is raised, it indicates that an error has occurred. Python provides a way to handle these exceptions using try-except blocks, allowing developers to manage errors gracefully and ensure the program can continue or exit smoothly.",
"links": [
{
"title": "Exceptions Documentation",
"url": "https://docs.python.org/3/tutorial/errors.html#exceptions",
"type": "article"
},
{
"title": "Python Exceptions: An Introduction",
@@ -115,17 +126,6 @@
"title": "Python Try Except",
"url": "https://www.w3schools.com/python/python_try_except.asp",
"type": "article"
}
]
},
"fNTb9y3zs1HPYclAmu_Wv": {
"title": "Exceptions",
"description": "Python exceptions are events that occur during the execution of a program and disrupt the normal flow of the program's instructions. When an exception is raised, it indicates that an error has occurred. Python provides a way to handle these exceptions using try-except blocks, allowing developers to manage errors gracefully and ensure the program can continue or exit smoothly.",
"links": [
{
"title": "Exceptions Documentation",
"url": "https://docs.python.org/3/tutorial/errors.html#exceptions",
"type": "article"
},
{
"title": "Exception Handling in Python",
@@ -1207,10 +1207,16 @@
}
]
},
"black@DS6nuAUhUYcqiJDmQisKM.md": {
"DS6nuAUhUYcqiJDmQisKM": {
"title": "black",
"description": "",
"links": []
"description": "black is a code formatter for Python. It is a tool that automatically formats Python code to adhere to the PEP 8 style guide. It is a great tool to use in your Python projects to ensure that your code is formatted consistently and correctly.",
"links": [
{
"title": "black documentation",
"url": "https://black.readthedocs.io/en/stable/",
"type": "article"
}
]
},
"tsh_vbhzKz1-H9Vh69tsK": {
"title": "yapf",