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: how to use for loops python
for i in range(1,100):
print(i)
fruits = ["apple","peach","banana"]
for fruit in fruits:
print(fruit)
Example 3: python for loop
for i in range(1,11):
print(i)
l = [1,2,3,4]
for i in l:
print(i)
r = ["a","b","c","d","e"]
s = [1,2,3,4,5]
for p,q in zip(r,s):
print(p,q)
Example 4: for in python
fruits = ["pineapple","apple", "banana", "cherry"]
for x in fruits:
if x == "apple":
continue
if x == "banana":
break
print(x)
for x in range(2, 30, 3):
print(x)
Example 5: python for loop
words=['zero','one','two']
for operator, word in enumerate(words):
print(word, operator)
Example 6: python for loop
nums = ['one', 'two', 'three']
for elem in nums:
print(elem)