Difference between revisions of "Vivek Test Page"
Jump to navigation
Jump to search
Russ hensel (talk | contribs) |
Russ hensel (talk | contribs) |
||
| Line 5: | Line 5: | ||
((-3./5.) ** 3 ) * ( (5./3.) ** 2 ) | ((-3./5.) ** 3 ) * ( (5./3.) ** 2 ) | ||
| + | = example_loop_forever = | ||
<pre> | <pre> | ||
| + | |||
def example_loop_forever(): | def example_loop_forever(): | ||
| Line 15: | Line 17: | ||
print("condition is true") | print("condition is true") | ||
| + | |||
| + | </pre> | ||
| + | |||
| + | = Vivek's Example = | ||
| + | |||
| + | <pre> | ||
| + | # put code here | ||
</pre> | </pre> | ||
Revision as of 07:54, 6 April 2020
This is Vivek's Test Page
((-3./5.) ** 3 ) * ( (5./3.) ** 2 )
example_loop_forever
def example_loop_forever():
print( """Example of for loop forever - stop with cntrl - c
""" )
while True:
print("condition is true")
Vivek's Example
# put code here