Hot-keys on this page

r m x p   toggle line displays

j k   next/prev highlighted chunk

0   (zero) top of page

1   (one) first highlighted chunk

1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

 

from util import borkify 

 

def func1(x): 

    return x+3 

 

def func2(y): 

    return y**4 

 

def func3(x, y): 

    return x+y+3 

 

if __name__ == '__main__': 

    print func3(2, 32) 

    print func2(borkify(18))