May 2018
Intermediate to advanced
380 pages
9h 37m
English

As can be seen, it looks like a standard Python interactive interpreter, so you can experiment with your code as normal.
def add(x, y): return x + y
from file1 import add def loop(): i = 0 a = 0.0 while i < 1000000000: a += 1.0 add(a, a) i += 1 if __name__ == "__main__": loop()
Read now
Unlock full access