Difference between revisions of "Vivek Test Page"

From OpenCircuits
Jump to navigation Jump to search
Line 4: Line 4:
  
 
     ((-3./5.) ** 3 )  *  (  (5./3.) ** 2 )
 
     ((-3./5.) ** 3 )  *  (  (5./3.) ** 2 )
 +
 +
<pre>
 +
def example_loop_forever():
 +
 +
    print( """Example of for loop forever - stop with cntrl - c
 +
 +
    """ )
 +
 +
    while True:
 +
        print("condition is true")
 +
 +
 +
</pre>

Revision as of 07:36, 6 April 2020

This is Vivek's Test Page


    ((-3./5.) ** 3 )  *  (   (5./3.) ** 2 )
def example_loop_forever():

    print( """Example of for loop forever - stop with cntrl - c

    """ )

    while True:
        print("condition is true")