Difference between revisions of "Vivek Test Page"
Jump to navigation
Jump to search
Russ hensel (talk | contribs) |
Russ hensel (talk | contribs) |
||
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 06: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")