dashboard
repositories
filestore
activity
search
login
python-kurs
/
mam-2025
summary
reflog
commits
tree
tickets
docs
forks
compare
blame
|
history
|
raw
Testkriterien
Hong-Phuc Bui
2025-05-27
a20fadf394be3bd0a535f11751a8038fe814473d
[python-kurs/mam-2025.git]
/
02-eingabe-ausgabe
/
demo-try.py
1
2
3
4
5
6
7
8
9
try:
a = input("a = ")
a = int(a)
b = input("b = ")
b = int(b)
c = a / b
print(c)
except:
print("Error")