Please enable JavaScript.
Coggle requires JavaScript to display documents.
Python - Coggle Diagram
Python
-
Condicionais
IF/Else
-
if condição: print("verdadeiro"): elif condição: print("segunda condição verdadeira) else: print("falso")
-
-
-
Laço de repetição
Laço while
a = 1 ; b = 10 while a <= b: print(a, end="") a+=1
Laço for
a = {"Python", "PHP", "JavaScript"} for b in a: print(b)
-