+ 5
Here a simple code to send input to dictionnary. I hope that's what you needed ... first=input("first input:") print(first) second=input("second input:") print(second) dic={1:first,2:second} print(dic[1]) print(dic[2])
28th Sep 2017, 10:25 AM
CĂ©pagrave
CĂ©pagrave - avatar