Added Donnerstag Mittag

This commit is contained in:
2022-11-24 12:57:50 +01:00
parent 1a21942de5
commit 20066fe48d
9 changed files with 130 additions and 1 deletions

12
Donnerstag/temp_var.py Normal file
View File

@@ -0,0 +1,12 @@
#! /usr/bin/env python3
a = 10
b = 15
print(a, b)
a, b, = b, a
print(a,b)
print("--" * 30)
#Beispiel : ip_address, oketett = match.groups()
mylist = [23, 32, 32, 34]
a, b, c, d = mylist
print(a, b, c, d)