Blog Details

img
Data Science

What is a pass in Python

Spoke Right / 14 Nov, 2023

Python Pass statement is used to pass by without the execution of current iteration in between the loop.

Syntax:

loop/conditions statements:

statements

pass

Example:

//pythonexample.py

print "Extracting terms from word ALPHA_NUMERIC.CHARACTERS:"
for x in "ALPHA_NUMERIC. CHARACTERS":
 
   if x == ".":
       print "\n"
       continue
 
   if x == "_":
       print "\n"
       continue
 
   if x == " ":
       pass
 
   print x

0 comments

Warning: PHP Startup: Unable to load dynamic library 'imagick.so' (tried: /usr/local/lib/php/extensions/no-debug-non-zts-20210902/imagick.so (/usr/local/lib/php/extensions/no-debug-non-zts-20210902/imagick.so: cannot open shared object file: No such file or directory), /usr/local/lib/php/extensions/no-debug-non-zts-20210902/imagick.so.so (/usr/local/lib/php/extensions/no-debug-non-zts-20210902/imagick.so.so: cannot open shared object file: No such file or directory)) in Unknown on line 0