Hello i need to create a list of empty lists eg [ [], [] , [] , []] but the problem is, i need the exact number of empty lists provided from the input.. for example if i give createEptyLists(4,X). it should return X= [ [], [] , [] , [] ].
how can i implement this " for i=<InputNumberOfLists" ?
how can i implement this " for i=<InputNumberOfLists" ?