Seems simple, yet elusive, want to build a dict from input of [key,value] pairs separated by a space using just one Python statement. This is what I have so far:
I have taken an empty dictionary as f and updated the values in f as name,password or balance are keys.
f=dict() f.update(name=input(),password=input(),balance=input()) print(f)