kar4z
Дек. 12, 2021 16:54:30
4. Write a code that will prompt the user to enter the chemical elements of Period2. The user will be asked if the chemical elements is a solid or gas and will be added to a set called Solid and Gas. Print the output of the two sets.
lyuda@
Дек. 13, 2021 13:27:12
nabor1=dict()
nabor2=dict()
i=0
while i<2:
vehestvo=input(“Введите название химического элемента периода 2:= ”)
otvet=input(“Ответьте на вопрос: Этот элемент твердое вещество или газ ”)
if otvet==“газ”:
nabor1= otvet
elif otvet==“твердое вещество”:
nabor2= otvet
else:
print(“Неверный ответ”)
i=i+1
print(“Все выполнено”)
for key in nabor1:
print(key, nabor1)
for key in nabor2:
print(key, nabor2)