In Python, Suppose there is a dictionary named fruits:
fruits={
"apple":5,
"orange":7,
"mango":9
}
On reading the dictionary items, it should create 3 lists having same name as dictionary keys viz. apple, orange and mango and size of theses lists should be 5, 7 and 9 respectively. The elements of these lists should be given from the user through console.