สถานะการส่งล่าสุด: -

SOS11: List to Dictionary

List to Dictionary

Convert Lists to Dictionary allocate certain elements as keys and certain as values

Example Outputs

{"A": 1, "B": 2,  "C": 3}


list_dict = [["A",1],["B",2],["C",3]]

print(dct)