Not touched python in a long time, this is watt i'm doing to get back into tthe game. Game Plan :
-
hello world : DONE
-
operators & data types : strings, integers, float, 4-banger ops, math lib : DONE
-
other libraries : datetime(), os : DONE
-
lists
-
subroutines : DONE
-
python equiv of case statement
-
sorting & searching algorithm using index sort
If you have created files, take a look at the files you have changed
$ git status
To include the files into the repo
$ git add -A
To accept, ie commit, the changes
$ git commit -a -m "<a short, descriptive message>"
To upload to the configured gitlab / github server
$ git push -u origin master
https://docs.python.org/3/library/os.html
https://www.geeksforgeeks.org/os-module-python-examples/
https://docs.python.org/3/library/datetime.html
https://www.w3schools.com/python/python_datetime.asp
https://www.programiz.com/python-programming/datetime
https://realpython.com/python-datetime/
https://www.freecodecamp.org/news/python-datetime-now-how-to-get-todays-date-and-time/
https://www.geeksforgeeks.org/python-datetime-module/
https://pynative.com/python/datetime/
https://docs.python.org/3/library/re.html
https://www.w3schools.com/python/python_regex.asp
https://www.programiz.com/python-programming/regex
https://docs.python.org/3/library/math.html
https://www.w3schools.com/python/module_math.asp
https://numpy.org/
https://www.w3schools.com/python/numpy/numpy_intro.asp
https://www.freecodecamp.org/news/python-switch-statement-switch-case-example/
https://stackoverflow.com/questions/11479816/what-is-the-python-equivalent-for-a-case-switch-statement
https://www.geeksforgeeks.org/switch-case-in-python-replacement/
https://flexiple.com/python/python-switch-case/
https://data-flair.training/blogs/python-switch-case/
https://learnpython.com/blog/python-match-case-statement/
https://www.git-tower.com/learn/git/faq/git-rename-master-to-main