What is the syntax in python for given below? | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
0

What is the syntax in python for given below?

C program: for(i=0;i<n;i=i+2) In python????

8th Jun 2018, 4:54 AM
Ch.Lakshman Vinay
1 Answer
+ 6
for i in range(0,n,2):
8th Jun 2018, 5:12 AM
李立威