build a programm to test e-RK4-function - NOT WORKING YET

This commit is contained in:
Brantegger Georg
2022-06-14 14:25:51 +02:00
parent d73bc99f49
commit 115e59af3b
5 changed files with 189 additions and 5 deletions

View File

@@ -1,4 +1,9 @@
import numpy as np
print(np.__version__)
class Person:
def __init__(self, name, age):
self.name = name
self.age = age
print("Test for Github commit")
p1 = Person("John", 36)
print(p1.name)
print(p1.age)