From b7dd70f17b8e6b0162f492fb3cb2446286352616 Mon Sep 17 00:00:00 2001 From: vand <vand@dtu.dk> Date: Thu, 10 Jun 2021 19:31:24 +0000 Subject: [PATCH] Upload New File --- module2_examples.py | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 module2_examples.py diff --git a/module2_examples.py b/module2_examples.py new file mode 100644 index 0000000..3e36216 --- /dev/null +++ b/module2_examples.py @@ -0,0 +1,12 @@ +#%% module 2, example 0 + +import math + + +a = 50 +b = math.sqrt(a) +print(b) + +#%% composition + +print(math.sqrt(50)) \ No newline at end of file -- GitLab