#!/usr/bin/python # demonstrating conditional statements print 24/2**2 print "Hello AFNOG friends" no_of_participants = 15 no_of_python_experts = 8 if no_of_python_experts < no_of_participants: print no_of_participants-no_of_python_experts,\ " participants will have to learn Python"