This digital clock prints the current time on the linux terminal. If a color is given as an argument to the program, the program prints a colored output.
If a colour is given as an argument to the program with the ‘-c’ flag, the program prints the clock using the given colour. If no argument is given, it prints white as default.
python filename.py -c red
python filename.py -c green
program supports for these standard colors - black, red, green, yellow, blue, magenta, cyan
If a colour is given as -c random, it prints the output with a random color gradient
python filename.py -c random
If a command is given as --animated, it prints animated color output
python filename.py --animated
If -h flag is given or the given arguments are invalid, program prints the usages of your program (how the arguments should be given).
