Created for
picture source: @imgur.com
from If programming languages were essays...
C:/Python27
or C:/Python36
If you don't have a convenient terminal install gitbash for windows
, which is included in the git for windows package.
# check for python installed version:
python --versions
# check for pip installed version:
pip --version
first_name = "Iva"
last_name = "Popova"
print(first_name + last_name)
Your Workspace should look like:
say_hello.py
and press enter.
my_name = "Iva"
print("Hello " + my_name)
ctrl+shift+p and find Python: Select interpreter
Keys | Action |
---|---|
ctrl+shift+p | Opens Command Palette |
ctrl+s | Save file |
ctrl+` | Toggle Terminal/Output panel |
ctrl+z | Undo what you've typed |
ctrl+l | While in terminal will clear the output |
Command Palette gives you access to all VS commands in the given context.
How to Install Python with Visual Studio Code [2018] by Jason E.
Bulgarian | Python | |
---|---|---|
novel | <=> | program |
paragraph | <=> | block |
sentences | <=> | instructions |
types of sentences (declarative, imperative,...) | <=> | types of instructions (statements, expressions) |
grammar rules (can be ambiguous) | <=> | grammar rules (could not be ambiguous) |
block
.These slides are based on
customised version of
framework