Abgabe .py Teile
commit
ed7af558ea
|
@ -0,0 +1,9 @@
|
|||
i = 0
|
||||
s = 0.0
|
||||
while s <= 1.644934:
|
||||
i = i + 1
|
||||
s = s + 1.0 / (i * i)
|
||||
print("Schritt: " + str(i) + ", Wert: " + str(s))
|
||||
|
||||
|
||||
#pi^2/6 = 1,644934, wird erreicht nach 14959887 Schritten
|
|
@ -0,0 +1,19 @@
|
|||
# 1a
|
||||
matrix_list = [[3, 0, -2, 11], [0, 0, 9, 0], [0, 7, 0, 0], [0, 0, 0, -3]]
|
||||
print(matrix_list)
|
||||
|
||||
# 1b+c
|
||||
matrix_list_general = [[], [], [], []]
|
||||
MAX = 4
|
||||
for i in range(0, MAX):
|
||||
print("Zeile " + str(i + 1))
|
||||
for j in range(0, MAX):
|
||||
n = int(input("Value:"))
|
||||
matrix_list_general[i].insert(j, n)
|
||||
|
||||
print(matrix_list_general)
|
||||
|
||||
# 1d
|
||||
for i, row in enumerate(matrix_list_general):
|
||||
for j, value in enumerate(row):
|
||||
print(f'a[{i}][{j}] = {value} ')
|
|
@ -0,0 +1,43 @@
|
|||
#5_3
|
||||
list1 = [0, 1, 2, 3, 4, 5, 6, 7, 8, 9]
|
||||
print("start list", list1)
|
||||
|
||||
a = list1[9]
|
||||
b = list1[8]
|
||||
c = list1[7]
|
||||
|
||||
list1 = [c] + [b] + [a] + list1
|
||||
list1.pop(-1)
|
||||
list1.pop(-1)
|
||||
list1.pop(-1)
|
||||
|
||||
print("new list", list1)
|
||||
print()
|
||||
print()
|
||||
|
||||
#5_4
|
||||
#a
|
||||
word = "DONAUDAMPFSCHIFFAHRTSGESELLSCHAFTSSTEWARDESS"
|
||||
letters = list(word)
|
||||
print(letters)
|
||||
print("length:", len(letters))
|
||||
|
||||
#b
|
||||
letters_once = []
|
||||
for element in letters:
|
||||
if element not in letters_once:
|
||||
letters_once.append(element)
|
||||
|
||||
print(letters_once)
|
||||
print("length new:", len(letters_once))
|
||||
|
||||
print()
|
||||
print()
|
||||
|
||||
#5_5
|
||||
def sort(list2):
|
||||
list2.sort(key = lambda x: x[1])
|
||||
return list2
|
||||
|
||||
list2 = [[1, 2, 3], [2, 1, 3], [4, 0, 1]]
|
||||
print(sort(list2))
|
|
@ -0,0 +1,6 @@
|
|||
string = "this is a test"
|
||||
replaced = string.replace(' ', '-')
|
||||
print(replaced)
|
||||
|
||||
string2 = "hello, world"[-7::-1]
|
||||
print(string2)
|
Loading…
Reference in New Issue