I would like to parse datetime from the command line:
python test.py -time 2017/2/9/ 10:30
But the argparse sees this as 2 seperate strings. I dont want to create another argparse argument just for time, is there a way to keep the date and time as 1 string?
Thanks