Looking for 120.130 Angleichungskurs Python-Programmierung (UE 1,0) 2025W test answers and solutions? Browse our comprehensive collection of verified answers for 120.130 Angleichungskurs Python-Programmierung (UE 1,0) 2025W at tuwel.tuwien.ac.at.
Get instant access to accurate answers and detailed explanations for your course questions. Our community-driven platform helps students succeed!
Was macht die set_xlabel()/set_ylabel() Funktion?
Wie kann der Error in den folgenden Codezellen korrigiert werden?
Wie kann eine Legende in ein Diagramm eingefügt werden?
Mit welchem der folgenden Codezellen kann ein erstellter Plot abgespeichert werden?
Wie kann die Größe eines Diagramms angepasst werden? Kreuze hierfür die richtige Antwort an.
Welche Werte beinhaltet das Array in Variable b?
a = np.array([[1, 2],[3, 4],
[5, 6]])b = a[2, 1]
Welche Ausgabe liefert folgendes print-Statement?
a = np.array([[1, 2],[3, 4],
[5, 6]]).reshape(-1, 1)print(a.shape)
Welche Ausgabe liefert folgendes print-Statement?
a = np.array([[1, 2],[3, 4],
[5, 6]])print(a.shape)
Welche Form hat das Array in Varibale a?
a = np.array([[1, 2, 3],[4, 5, 6]]).T
Welche Ausgabe liefert folgendes print-Statement?
a = np.array([1, 2, 3])print(a.shape)