view python/example/anonomouse.py @ 847:6c918c07d0e3

[gpg] make a front-end to add a line to a gpg symmetrically encrypted file
author Jeff Hammel <k0scist@gmail.com>
date Tue, 17 Oct 2017 11:59:09 -0700
parents 9f42400dcd83
children
line wrap: on
line source


def foo(a):

    c = ['hi']

    def bar(n):
        d = c[:][0].upper()
        return '{} {}!'.format(d, a) * n

    fleem = lambda n: '{} {}!'.format(c[:][0].upper(), a) * n

    c = ['hello']

    return (bar,
            fleem)

_bar, _fleem = foo("world")
print (_bar(2))
print (_fleem(2))