Files
opm-common/tests/act1.py
T

16 lines
214 B
Python
Raw Normal View History

from math import sin
import random
2020-03-22 21:02:32 +01:00
def run():
pass
print("sin(0) = {}".format(sin(0)))
#---
if random.random() > 0.25:
print("Large outcome")
else:
print("Small result")
A = 100
B = A / 10
C = B * 20