Python programming codes
43 subscribers
25 photos
1 video
83 files
82 links
Uploading All programming codes are updating Daily
ask doubts in comment box 🎁☑️
Download Telegram
------pyclsinclg------
#forloop

#example - 1 : To print characters present in tge given string

s = "Sweety my world website"

for i in s:
print(i,end=" ")
print(i)
#forloop
#example - 2 : To print characters present in string indexwise

x = input("Enter the name : ")
i = 0
for n in x:
print(n,"+ve index is ",i,"-ve index is ",i-len(x))
i += 1
#forloop
#example - 3 : To print Sweety My World

for i in range(10):
print("Sweety My World")
#forloop
#example - 4 : To display numbers from 0 to 25

for x in range(26):
print(x)
#forloop
#example - 5 : To display odd numbers from 0 to 25
for i in range(26):
if (i%2 != 0):
print(i)
#forloop
#example - 6 : To display odd numbers from 25 to 0 descending order

for i in range(25,0,-1):
print(i)