PowerShell is not bad; just the default settings are not developer-friendly. Look at the awesome list for PowerShell. https://github.com/janikvonrotz/awesome-powershell
I recommend:
1. PSReadLine (for customising key bindings)
2. posh-git (for Git extension)
Equivalent of "which" command in PowerShell: https://stackoverflow.com/a/16949127/541303
I think single-quote and double-quote characters should NOT be the same. It doesn't provide readability, causes inconsistency instead. Please always use double-quote as in many other programming languages. #python
We can say that BASH is a semi-functional programming language, it's possible to send the output of a command (function) to another command as a parameter. #bash
"As of Python 3.6, f-strings are a great new way to format strings. Not only are they more readable, more concise, and less prone to error than other ways of formatting, but they are also faster!"