Github user prabhjyotsingh commented on the issue:

    https://github.com/apache/zeppelin/pull/2809
  
    Here is another example for python.
    ```
    %python
    print "%table col1  col2"
    print "i 1  i 1"
    wait_time = 2
    import time
    time.sleep(1)
    for x in range(2, 200):
        print "i",x,"   i",x
        if x == wait_time:
            time.sleep(2)
            wait_time = wait_time*2
    ```
    
    
![zeppelin-3249-python](https://user-images.githubusercontent.com/674497/36424708-48fb237e-166a-11e8-9b12-7d117984cc7e.gif)



---

Reply via email to