If a Letter Expected Occurs the Execution is Continued || Continue || Python
In this we are going to see a program on if a letter expected occurs the execution is continued in Python Programming Language.


string = "Help For Coders"
for i in string:
    if i=='F':
        continue
    print(i)

# Coded By DHIRAJ SHELKE

#ENJOY CODING


Post a Comment

FOR ANY DOUBTS AND ERRORS FEEL FREE TO ASK. YOUR DOUBTS WILL BE ADDRESSED ASAP

Previous Post Next Post