modified: 2.Erste Programme/4. Fahrkartenautomat Python/main.py

new file:   "3. \303\234bungen/10.03.2022/Ausgabewerte.py"
	new file:   "3. \303\234bungen/10.03.2022/Programmfehler.py"
	new file:   "3. \303\234bungen/10.03.2022/Zylinder.py"
This commit is contained in:
2022-03-10 14:42:22 +01:00
parent ce3895240c
commit f79c423b8e
4 changed files with 55 additions and 25 deletions

View File

@@ -0,0 +1,11 @@
## Übung Wertzuweisung
x=12
y=8
z=y*x+2 #8*12+2 = 98
v=z%x #2
w=z//x #8
u=v**w #256
print(z,v,w,u)