List creation
Given two inputs, return a list containing those two inputs.
Sample Code:
def createList(inp1,inp2):
# Enter your logic here...
Examples:
Input: {obj: 1}, [2]
Output: [{obj: 1}, [2]]
Explanation: The two inputs have now been stored in a List as elements.
Input: ' ',0
Output: [' ',0]
Explanation: The two inputs have now been stored in a List as elements.