Merge remote-tracking branch 'origin/master'

This commit is contained in:
Spongebob-Schwammkopf
2019-07-24 08:26:26 +02:00
5 changed files with 31 additions and 1 deletions
+1
View File
@@ -10,3 +10,4 @@ assignees: ''
**Kurzbeschreibung**
**weitere Infos**
+1 -1
View File
@@ -51,7 +51,7 @@ class Formel:
pass
def _solve_to_x(self):
pass
return math.log(i-d*e*f-g)/(a**z)*(b**y, c)
def __init__(self, name, i, a=Groesse(None, None, True, 0), b=Groesse(None, None, True, 0),
c=Groesse(None, None, True, 0), d=Groesse(None, None, True, 0), e=Groesse(None, None, True, 0),
+5
View File
@@ -0,0 +1,5 @@
#import Formeln
import user_IO
#import Klassen
while True:
_ = user_IO.user_Input()
+24
View File
@@ -0,0 +1,24 @@
# print("Wie alt bist du?")
# # name = (input("Wie ist dein Name"))
# # alter = int(input("Wie alt bist du?"))
# # print(name)
# # print(alter)
# #
# # if alter >= 18:
# # print("Sie sind älter als 17")
# # elif alter <= 10:
# # print("Du bist jünger als 11")
# #
# # else:
# Produkte = ["Apfel","Birne","Banane","Ananas"]
# woerterbuch = {"Apfel":1, "Birne":2, "Banane":34}
# for produkt in Produkte:
# print (produkt)
# zaehler = 0
# while True:
# print (zaehler)
# zaehler = zaehler + 1
def Addiere(Zahl1,Zahl2):
return Zahl1+Zahl2)
View File