0
wht is error in my program
user_imput = input("") dict = {"1":"one","2":"two"} output = '' for items in dict: output += dict.get(items ,'!' ) + '' print (output )
2 Answers
0
Always specify what do you want to do and whats the problem you are facing while posting the question.
you have taken input which is of no use because you havent used that variable "user_imput" anywhere.
0
đđ ok