how does python for in work code example
Example 1: what is python used for
Python is a multipurpose language. Here are a few examples:
- Building softwares
- Talking to embedded electroncis
- Webscrapping
- Building websites
- Data science
- Artificial intelligence training
- Much more.
It is an easy to learn, easy to read, open-source development language.
Example 2: for in python
for i in range(1,10,2):
print(i);
for i in range (1,4):
print(i);
for i in range (5):
print (i);
python = ["ml","ai","dl"];
for i in python:
print(i);
for i in range(1,5):
pass;