Skip to content

Commit

Permalink
#1 - Python
Browse files Browse the repository at this point in the history
  • Loading branch information
VictorE16 committed May 29, 2024
1 parent 5e0dc21 commit ff5f9c2
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -73,11 +73,11 @@
print("*****ESTRUCTURAS DE CONTROL*****\n")
#Estructuras condicionales
print("*****Estructuras condicionales*****\n")
condition = 10
condition = 11

if condition == 10:
if condition == 11:
print("Mi condicion se cumplio\n")
elif condition > 10:
elif condition > 11:
print("Mi segunda condicion se cumplio")
else:
print("Ninguna de las condiciones se cumplio")
Expand Down

0 comments on commit ff5f9c2

Please sign in to comment.