0
PORQUÉ ESTÁ MAL ESTA SOLUCION
n = int(input()) for x in range(1, 3*n+1): if (x%3==0)&(x%5==0): print(str(x)+" "+"SoloLearn") elif (x%3==0): print(str(x)+" "+"Solo") elif (x%5==0): print(str(x)+" "+"Learn") else: continue
2 odpowiedzi
+ 1
¿cómo puedo restaurar el Código en el curso de php o activar la opción que siempre la encuentro desactivada?
+ 2
👉 Please tag the relevant programming language!!!
👉 In Python we use "and", not "&" for this comparison
👉 Read the task description carefully: Only output the number when it does NOT meet the other conditions. Iterate range(1, n)