Delete tutorial.py

This commit is contained in:
Sandro Zimmermann 2025-09-19 00:18:00 +02:00
parent a497e52139
commit c446cbf400

View File

@ -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()