├── .gitignore ├── LICENSE ├── README.md ├── data ├── core-macos.gif ├── get-help-python.gif ├── get-help.gif ├── get-myip.ps1 ├── idle-shell-windows.png ├── powershell-console.png ├── python-shell-windows.gif ├── python-version-windows.gif ├── python-versions.gif ├── script-output.png ├── start-menu-python.png ├── start-menu.png ├── using-macos.gif └── windows-version.gif ├── powershell-presentation.md ├── powershell ├── 1-powershell.md ├── 10-running-scripts.md ├── 11-alternate-running-scripts.md ├── 12-variables-conventions.md ├── 13-variables-usage.md ├── 14-string-replacement.md ├── 15-if-statement.md ├── 16-if-statement-adv.md ├── 17-comparison-operators.md ├── 18-arrays.md ├── 19-hashtables.md ├── 2-history.md ├── 20-hashtables-2.md ├── 21-foreach-loops.md ├── 22-for-loop.md ├── 23-script.md ├── 24-function.md ├── 25-adv-function.md ├── 26-adv-function-2.md ├── 27-classes.md ├── 3-installing-windows.md ├── 4-installing-macos.md ├── 5-using-version-windows.md ├── 6-using-version-macOS.md ├── 7-terms.md ├── 8-syntax.md ├── 9-help.md ├── PowerShell.code-workspace ├── get-myip.ps1 ├── powershell-presentation.md └── test.ps1 ├── python-presentation.md └── python ├── .vscode └── settings.json ├── 1-python.md ├── 10-running-scripts.md ├── 11-alternate-running-scripts.md ├── 12-variables-conventions.md ├── 13-variables-usage.md ├── 14-string-replacement.md ├── 15-if-statement.md ├── 16-if-statement-adv.md ├── 17-comparison-operators.md ├── 18-arrays.md ├── 19-dictionary.md ├── 2-history.md ├── 20-hashtables-2.md ├── 21-for-loops.md ├── 22-for-loops.md ├── 23-scripts.md ├── 24-function.md ├── 25-advanced-function.md ├── 26-advanced-function-2.md ├── 27-classes.md ├── 3-installing-windows.md ├── 4-installing-macos.md ├── 5-using-version-windows.md ├── 6-using-version-macos.md ├── 7-terms.md ├── 8-syntax.md ├── 9-help.md ├── Python.code-workspace └── myip.py /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSAdministrator/powershell-python-comparison-presentation/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSAdministrator/powershell-python-comparison-presentation/HEAD/README.md -------------------------------------------------------------------------------- /data/core-macos.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSAdministrator/powershell-python-comparison-presentation/HEAD/data/core-macos.gif -------------------------------------------------------------------------------- /data/get-help-python.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSAdministrator/powershell-python-comparison-presentation/HEAD/data/get-help-python.gif -------------------------------------------------------------------------------- /data/get-help.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSAdministrator/powershell-python-comparison-presentation/HEAD/data/get-help.gif -------------------------------------------------------------------------------- /data/get-myip.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSAdministrator/powershell-python-comparison-presentation/HEAD/data/get-myip.ps1 -------------------------------------------------------------------------------- /data/idle-shell-windows.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSAdministrator/powershell-python-comparison-presentation/HEAD/data/idle-shell-windows.png -------------------------------------------------------------------------------- /data/powershell-console.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSAdministrator/powershell-python-comparison-presentation/HEAD/data/powershell-console.png -------------------------------------------------------------------------------- /data/python-shell-windows.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSAdministrator/powershell-python-comparison-presentation/HEAD/data/python-shell-windows.gif -------------------------------------------------------------------------------- /data/python-version-windows.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSAdministrator/powershell-python-comparison-presentation/HEAD/data/python-version-windows.gif -------------------------------------------------------------------------------- /data/python-versions.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSAdministrator/powershell-python-comparison-presentation/HEAD/data/python-versions.gif -------------------------------------------------------------------------------- /data/script-output.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSAdministrator/powershell-python-comparison-presentation/HEAD/data/script-output.png -------------------------------------------------------------------------------- /data/start-menu-python.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSAdministrator/powershell-python-comparison-presentation/HEAD/data/start-menu-python.png -------------------------------------------------------------------------------- /data/start-menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSAdministrator/powershell-python-comparison-presentation/HEAD/data/start-menu.png -------------------------------------------------------------------------------- /data/using-macos.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSAdministrator/powershell-python-comparison-presentation/HEAD/data/using-macos.gif -------------------------------------------------------------------------------- /data/windows-version.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSAdministrator/powershell-python-comparison-presentation/HEAD/data/windows-version.gif -------------------------------------------------------------------------------- /powershell-presentation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSAdministrator/powershell-python-comparison-presentation/HEAD/powershell-presentation.md -------------------------------------------------------------------------------- /powershell/1-powershell.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSAdministrator/powershell-python-comparison-presentation/HEAD/powershell/1-powershell.md -------------------------------------------------------------------------------- /powershell/10-running-scripts.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSAdministrator/powershell-python-comparison-presentation/HEAD/powershell/10-running-scripts.md -------------------------------------------------------------------------------- /powershell/11-alternate-running-scripts.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSAdministrator/powershell-python-comparison-presentation/HEAD/powershell/11-alternate-running-scripts.md -------------------------------------------------------------------------------- /powershell/12-variables-conventions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSAdministrator/powershell-python-comparison-presentation/HEAD/powershell/12-variables-conventions.md -------------------------------------------------------------------------------- /powershell/13-variables-usage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSAdministrator/powershell-python-comparison-presentation/HEAD/powershell/13-variables-usage.md -------------------------------------------------------------------------------- /powershell/14-string-replacement.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSAdministrator/powershell-python-comparison-presentation/HEAD/powershell/14-string-replacement.md -------------------------------------------------------------------------------- /powershell/15-if-statement.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSAdministrator/powershell-python-comparison-presentation/HEAD/powershell/15-if-statement.md -------------------------------------------------------------------------------- /powershell/16-if-statement-adv.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSAdministrator/powershell-python-comparison-presentation/HEAD/powershell/16-if-statement-adv.md -------------------------------------------------------------------------------- /powershell/17-comparison-operators.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSAdministrator/powershell-python-comparison-presentation/HEAD/powershell/17-comparison-operators.md -------------------------------------------------------------------------------- /powershell/18-arrays.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSAdministrator/powershell-python-comparison-presentation/HEAD/powershell/18-arrays.md -------------------------------------------------------------------------------- /powershell/19-hashtables.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSAdministrator/powershell-python-comparison-presentation/HEAD/powershell/19-hashtables.md -------------------------------------------------------------------------------- /powershell/2-history.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSAdministrator/powershell-python-comparison-presentation/HEAD/powershell/2-history.md -------------------------------------------------------------------------------- /powershell/20-hashtables-2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSAdministrator/powershell-python-comparison-presentation/HEAD/powershell/20-hashtables-2.md -------------------------------------------------------------------------------- /powershell/21-foreach-loops.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSAdministrator/powershell-python-comparison-presentation/HEAD/powershell/21-foreach-loops.md -------------------------------------------------------------------------------- /powershell/22-for-loop.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSAdministrator/powershell-python-comparison-presentation/HEAD/powershell/22-for-loop.md -------------------------------------------------------------------------------- /powershell/23-script.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSAdministrator/powershell-python-comparison-presentation/HEAD/powershell/23-script.md -------------------------------------------------------------------------------- /powershell/24-function.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSAdministrator/powershell-python-comparison-presentation/HEAD/powershell/24-function.md -------------------------------------------------------------------------------- /powershell/25-adv-function.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSAdministrator/powershell-python-comparison-presentation/HEAD/powershell/25-adv-function.md -------------------------------------------------------------------------------- /powershell/26-adv-function-2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSAdministrator/powershell-python-comparison-presentation/HEAD/powershell/26-adv-function-2.md -------------------------------------------------------------------------------- /powershell/27-classes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSAdministrator/powershell-python-comparison-presentation/HEAD/powershell/27-classes.md -------------------------------------------------------------------------------- /powershell/3-installing-windows.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSAdministrator/powershell-python-comparison-presentation/HEAD/powershell/3-installing-windows.md -------------------------------------------------------------------------------- /powershell/4-installing-macos.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSAdministrator/powershell-python-comparison-presentation/HEAD/powershell/4-installing-macos.md -------------------------------------------------------------------------------- /powershell/5-using-version-windows.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSAdministrator/powershell-python-comparison-presentation/HEAD/powershell/5-using-version-windows.md -------------------------------------------------------------------------------- /powershell/6-using-version-macOS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSAdministrator/powershell-python-comparison-presentation/HEAD/powershell/6-using-version-macOS.md -------------------------------------------------------------------------------- /powershell/7-terms.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSAdministrator/powershell-python-comparison-presentation/HEAD/powershell/7-terms.md -------------------------------------------------------------------------------- /powershell/8-syntax.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSAdministrator/powershell-python-comparison-presentation/HEAD/powershell/8-syntax.md -------------------------------------------------------------------------------- /powershell/9-help.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSAdministrator/powershell-python-comparison-presentation/HEAD/powershell/9-help.md -------------------------------------------------------------------------------- /powershell/PowerShell.code-workspace: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSAdministrator/powershell-python-comparison-presentation/HEAD/powershell/PowerShell.code-workspace -------------------------------------------------------------------------------- /powershell/get-myip.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSAdministrator/powershell-python-comparison-presentation/HEAD/powershell/get-myip.ps1 -------------------------------------------------------------------------------- /powershell/powershell-presentation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSAdministrator/powershell-python-comparison-presentation/HEAD/powershell/powershell-presentation.md -------------------------------------------------------------------------------- /powershell/test.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSAdministrator/powershell-python-comparison-presentation/HEAD/powershell/test.ps1 -------------------------------------------------------------------------------- /python-presentation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSAdministrator/powershell-python-comparison-presentation/HEAD/python-presentation.md -------------------------------------------------------------------------------- /python/.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSAdministrator/powershell-python-comparison-presentation/HEAD/python/.vscode/settings.json -------------------------------------------------------------------------------- /python/1-python.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSAdministrator/powershell-python-comparison-presentation/HEAD/python/1-python.md -------------------------------------------------------------------------------- /python/10-running-scripts.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSAdministrator/powershell-python-comparison-presentation/HEAD/python/10-running-scripts.md -------------------------------------------------------------------------------- /python/11-alternate-running-scripts.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSAdministrator/powershell-python-comparison-presentation/HEAD/python/11-alternate-running-scripts.md -------------------------------------------------------------------------------- /python/12-variables-conventions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSAdministrator/powershell-python-comparison-presentation/HEAD/python/12-variables-conventions.md -------------------------------------------------------------------------------- /python/13-variables-usage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSAdministrator/powershell-python-comparison-presentation/HEAD/python/13-variables-usage.md -------------------------------------------------------------------------------- /python/14-string-replacement.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSAdministrator/powershell-python-comparison-presentation/HEAD/python/14-string-replacement.md -------------------------------------------------------------------------------- /python/15-if-statement.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSAdministrator/powershell-python-comparison-presentation/HEAD/python/15-if-statement.md -------------------------------------------------------------------------------- /python/16-if-statement-adv.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSAdministrator/powershell-python-comparison-presentation/HEAD/python/16-if-statement-adv.md -------------------------------------------------------------------------------- /python/17-comparison-operators.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSAdministrator/powershell-python-comparison-presentation/HEAD/python/17-comparison-operators.md -------------------------------------------------------------------------------- /python/18-arrays.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSAdministrator/powershell-python-comparison-presentation/HEAD/python/18-arrays.md -------------------------------------------------------------------------------- /python/19-dictionary.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSAdministrator/powershell-python-comparison-presentation/HEAD/python/19-dictionary.md -------------------------------------------------------------------------------- /python/2-history.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSAdministrator/powershell-python-comparison-presentation/HEAD/python/2-history.md -------------------------------------------------------------------------------- /python/20-hashtables-2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSAdministrator/powershell-python-comparison-presentation/HEAD/python/20-hashtables-2.md -------------------------------------------------------------------------------- /python/21-for-loops.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSAdministrator/powershell-python-comparison-presentation/HEAD/python/21-for-loops.md -------------------------------------------------------------------------------- /python/22-for-loops.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSAdministrator/powershell-python-comparison-presentation/HEAD/python/22-for-loops.md -------------------------------------------------------------------------------- /python/23-scripts.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSAdministrator/powershell-python-comparison-presentation/HEAD/python/23-scripts.md -------------------------------------------------------------------------------- /python/24-function.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSAdministrator/powershell-python-comparison-presentation/HEAD/python/24-function.md -------------------------------------------------------------------------------- /python/25-advanced-function.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSAdministrator/powershell-python-comparison-presentation/HEAD/python/25-advanced-function.md -------------------------------------------------------------------------------- /python/26-advanced-function-2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSAdministrator/powershell-python-comparison-presentation/HEAD/python/26-advanced-function-2.md -------------------------------------------------------------------------------- /python/27-classes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSAdministrator/powershell-python-comparison-presentation/HEAD/python/27-classes.md -------------------------------------------------------------------------------- /python/3-installing-windows.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSAdministrator/powershell-python-comparison-presentation/HEAD/python/3-installing-windows.md -------------------------------------------------------------------------------- /python/4-installing-macos.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSAdministrator/powershell-python-comparison-presentation/HEAD/python/4-installing-macos.md -------------------------------------------------------------------------------- /python/5-using-version-windows.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSAdministrator/powershell-python-comparison-presentation/HEAD/python/5-using-version-windows.md -------------------------------------------------------------------------------- /python/6-using-version-macos.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSAdministrator/powershell-python-comparison-presentation/HEAD/python/6-using-version-macos.md -------------------------------------------------------------------------------- /python/7-terms.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSAdministrator/powershell-python-comparison-presentation/HEAD/python/7-terms.md -------------------------------------------------------------------------------- /python/8-syntax.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSAdministrator/powershell-python-comparison-presentation/HEAD/python/8-syntax.md -------------------------------------------------------------------------------- /python/9-help.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSAdministrator/powershell-python-comparison-presentation/HEAD/python/9-help.md -------------------------------------------------------------------------------- /python/Python.code-workspace: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSAdministrator/powershell-python-comparison-presentation/HEAD/python/Python.code-workspace -------------------------------------------------------------------------------- /python/myip.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSAdministrator/powershell-python-comparison-presentation/HEAD/python/myip.py --------------------------------------------------------------------------------