Python‎ > ‎

    pass-Anweisung (Python)


    #!/usr/bin/env python
    # -*- coding: utf8 -*-

    print "Content-type: text/html\n\n"

    x = 1

    if x == 1:
        pass # Platzhalter für leeren Anweisungskörper, da sonst Syntaxfehler
    else:
        print "x ist ungleich 1"