error de sintaxis
Publicado por sara (11 intervenciones) el 29/03/2020 09:16:42
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
n=int(input('ingrese n : '))
while not (n%2==1) and n>0:
print ('n debe de ser impar y mayor que 0')
n=int(input('ingrese n'))
a=1
while not a==n+2 :
b=a
while not b==1:
print (end='*')
b=b-1
print(end='*')
b=0
while not b == ((n-a)*4)
print(' ')
b=b+1
b=a
while not b==1
print(end='*')
b=b-1
print(end='*')
a=a+2
"""" en la linea 14 me aparece un error como SyntaxError: invalid syntax por favor me pueden orientar como arreglarlo gracias"""
Valora esta pregunta


-1