continue py

Solutions on MaxInterview for continue py by the best coders in the world

showing results for - "continue py"
Adaline
10 Jul 2016
1# Program to show the use of continue statement inside loops
2
3for val in "string":
4    if val == "i":
5        continue
6    print(val)
7
8print("The end")
9# Output:
10# s
11# t
12# r
13# n
14# g
queries leading to this page
continue pythincontinue pycontinue py