Uma pequena revisão

j1=input()
j2=input()
j3=input()
j4=input()
if ((j1 > 1.75) and (j2 > 1.75) 
and (j3 > 1.75) and (j4 > 1.74)):
    print("O time pode jogar")
else:
    print("O time nao pode jogar")

O operador and

j1=input()
j2=input()
j3=input()
j4=input()
if (j1 > 1.75) or (j2 > 1.75) 
or (j3 > 1.75) or (j4 > 1.75):
    print ("esse time pode ter um capitao")

O operador or

While

Fazendo iterações no computador

Um exemplo

#Jogo da Copa
gols = 0
while (gols < 7):
    gols = gols + 1
    print ("GOOOOOOOL DA ALEMANHA")

print ("E um golzinho do Brasil")
Made with Slides.com