11 lines
104 B
Python
11 lines
104 B
Python
|
|
wert = 3
|
|
|
|
#str = 'Die ' + wert + ' Musketiere'
|
|
|
|
|
|
str = 'Die ' + str(wert) + ' Musketiere'
|
|
|
|
print(str)
|
|
|