dashboard
repositories
filestore
activity
search
login
python-kurs
/
mam-2025
summary
reflog
commits
tree
tickets
docs
forks
compare
blame
|
history
|
raw
Vorlesung 02.06.2025
Hong-Phuc Bui
2025-06-02
c97d23edee3e224f1bcba0add74b61934ad69ff7
[python-kurs/mam-2025.git]
/
04-schleife
/
multiplication.py
1
2
3
4
5
for
y
in
range
(
2
,
10
):
for
x
in
range
(
1
,
10
):
expr
=
f
"{y} x {x} = {y*x:x}"
print
(
expr
)
print
(
'-'
*
len
(
expr
))