Python pass

Python pass

pass

Python pass

pass

#!/usr/bin/python # -*- coding: UTF-8 -*- # Python for letter in 'Python': if letter == 'h': pass print ' pass ' print ' :', letter print "Good bye!"

 : P
 : y
 : t
 pass 
 : h
 : o
 : n
Good bye!