Learn practical skills, build real-world projects, and advance your career
cf=[100, 23, 23,43, 34]
 
st = "yipes"
n = len(st)
for ch in range(n):
    print(ch)
0 1 2 3 4
a =range(-1, -10, -2)

for i in a:
    print(i)
-1 -3 -5 -7 -9