conditional statement:
elif replace
elif for else if loop:
1.for loop:
for variable in list or tuple or range(x)
Note: range(x)Indicates that the number contained is from 0 to x-1
You can use the list(range(x)) function to convert the range to a list or tuple
2.while loop:
The while loop is the same as in java,c
3.break,continue:
The same as in java,c