You have definitely used i++ to increment your loop variable inside a loop.
But what does this statement mean? We can also use ++i or i=i+1 to accomplish the same task.
🔸Pre-increment (++i)
Before assigning the value to the variable, the value is incremented by one.
Ex -
🔸Post-increment (i++)
After assigning the value to the variable, the value is incremented.
Ex -
📌Precedence
The precedence of postfix ++ is more than prefix ++ and their associativity is also different.
Associativity of prefix ++ is right to left and associativity of postfix ++ is left to right.
📌What is Version Control?
A version control system is like a save program for your project. By tracking and logging the changes you make to your file or file sets over time, a version control system gives you the power to review or even restore earlier versions.
🔸Git is a version control system that lets you manage and keep track of your source code history.
🔹GitHub is a cloud-based hosting service that lets you manage Git repositories.
1⃣Python -
🔸Artificial Intelligence
🔸Machine Learning
🔸Data analytics
🔸Data visualization
🔸Web development using the frameworks - Django, Pyramid and flask
🔸Game development using python
🔸Python used in field of Search Engine Optimisation (SEO)
2⃣Javascript -
🔸Rich Interactive web development
🔸Mobile applications using React Native
🔸Game development using game engines as PhysicsJS, Pixi.js
🔸Creating web servers using node.js