Metainformationen zur Seite
  •  
password.py
name = input("What's your name?: ")
 
password = "secret123"
 
password1 = input("Please in sert password to enter:")
if password == password1:
    print("Welcome to the server")
else:
    print("Wrong password")
calculator.py
first = float(input("First: "))
operator = input("Operator: ")
second = float(input("Second: "))
 
if operator == "+":
print(first + second)
elif operator == "-":
print(first - second)
elif operator == "*":
print(first * second)
elif operator == "/":
print(first / second)
else: print("invalid operator")
basicsaufgabe1.py
zahl = int(input("Gib eine Zahl ein: "))
print (zahl + 10)
basicsaufgabe2.py
x = input("Gib ein: ")
print (x)
basicsaufgabe3.py
s1 = input("gib was ein:")
s2 = input("gib nochwas ein: ")
s3 = (s1 + s2)
print (s3)
ratespiel.py
zahl = 34
print("Willkommen zum Zahlenratespiel!")
 
 
while True:
    a = int(input("Gib eine Zahl ein: "))
 
 
    if a < zahl:
        print("Zu kleine Zahl")
    elif a > zahl:
        print("Zu große Zahl")
    else:
        print("Richtige Zahl")
        break
ratespiel_mit_zufälliger zahl.py
import random 
zahl = random.randint(1,100)
print("Willkommen zum Zahlenratespiel!")
 
 
while True:
    a = int(input("Gib eine Zahl ein: "))
 
 
    if a < zahl:
        print("Zu kleine Zahl")
    elif a > zahl:
        print("Zu große Zahl")
    else:
        print("Richtige Zahl")
        break  
sumarray.py
element = [1,2,3,4,5,6,7,8,9,0]
sum1 = sum(element)
 
print(sum1)
array_average.py
grades = [1,4,3,2,4,1,5,6,3,3,2,3,2,1,5,4]
sum1 = 0
for i in range(16):
    sum1 = sum1 + grades[i]
average = sum1 / len(grades)
print(average)