Skip to content

Commit 515d9b0

Browse files
committed
initial commit to master
0 parents  commit 515d9b0

File tree

3 files changed

+27
-0
lines changed

3 files changed

+27
-0
lines changed
385 Bytes
Binary file not shown.

helloworld.py

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
from mymodule import person1
2+
3+
import platform as plat
4+
5+
import datetime as dt
6+
from datetime import datetime as x
7+
8+
now = x.now()
9+
print(now.year)
10+
print(now.strftime("%A"))
11+
12+
13+
import numpy
14+
import matplotlib.pyplot as plt
15+
16+
x = numpy.random.uniform(0.0, 5.0, 250)
17+
18+
plt.hist(x, 5)
19+
plt.show()

mymodule.py

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
def greeting(name):
2+
print("Hello, "+name)
3+
4+
person1 = {
5+
"name": "John",
6+
"age": 36,
7+
"country": "Norway"
8+
}

0 commit comments

Comments
 (0)