14 lines
127 B
Python
Executable File
14 lines
127 B
Python
Executable File
import math
|
|
|
|
#Eingabe
|
|
s = int(input("Seitenlänge: "))
|
|
|
|
|
|
#Verarbeitung
|
|
for i in range(s):
|
|
print(s * "* ")
|
|
|
|
|
|
|
|
|