A = {10, 'Python', 1.0, False} for elemento in A: print(elemento) # Saída: # False # Python # 10 # 1.0