From c446cbf40002e4888dfe934547e12d110e911535 Mon Sep 17 00:00:00 2001 From: Sandro Zimmermann Date: Fri, 19 Sep 2025 00:18:00 +0200 Subject: [PATCH] Delete tutorial.py --- tutorial.py | 26 -------------------------- 1 file changed, 26 deletions(-) delete mode 100644 tutorial.py diff --git a/tutorial.py b/tutorial.py deleted file mode 100644 index 3bcc5df..0000000 --- a/tutorial.py +++ /dev/null @@ -1,26 +0,0 @@ -#!/usr/bin/env python3 -# -*- coding: utf-8 -*- -""" -Created on Thu Sep 18 17:10:29 2025 - -@author: s -""" - -import numpy as np - -# Berechnungen -def main(): - a=4+7 - b=7*9 - c=np.log(10)/np.log(4) - d=np.sin(np.pi/2) - - # Ausgabe - print(f"a: {a}") - print(f"b: {b}") - print(f"c: {c}") - print(f"d: {d}") - -main() - -