jagomart
digital resources
picture1_Python Syntax Cheat Pdf 191631 | Python Tutorial (2)


 134x       Filetype PDF       File size 0.59 MB       Source: www.stern.nyu.edu


File: Python Syntax Cheat Pdf 191631 | Python Tutorial (2)
python tutorial cheat sheet getting started what you need linux based machine with python 2 7 or higher comes default on most linuxsystems python on windows also works though not ...

icon picture PDF Filetype PDF | Posted on 04 Feb 2023 | 2 years ago
Partial capture of text on file.
     Python Tutorial
        &
      Cheat Sheet
   Getting Started
    What you need: 
   Linux based machine with Python 2.7 or higher (comes default on most linuxsystems)
    (Python on windows also works though not ideal)
   Editor on Linux such as VI or EMACS to edit your files
   Python interpreter: operates similar to a unix shell: reads and executes commands 
    interactively
   Setting your path variable to include the location of the Python interpreter: (usually 
    /usr/local/bin/python
   Run python scripts by using the following syntax: $python filename.py
 Python Basics
    1. Primitives
    Numbers
     Python has integers and floats. Integers are whole numbers, like 314, 500. Floats, meanwhile, 
     are fractional numbers like 3.14, 2.867, 76.88887
     You can use the type method to check the value of an object.
     >>> type(3)
     
     >>> type(3.14)
     
     >>> pi = 3.14
     >>> type(pi)
     
The words contained in this file might help you see if this file matches what you are looking for:

...Python tutorial cheat sheet getting started what you need linux based machine with or higher comes default on most linuxsystems windows also works though not ideal editor such as vi emacs to edit your files interpreter operates similar a unix shell reads and executes commands interactively setting path variable include the location of usually usr local bin run scripts by using following syntax filename py basics primitives numbers has integers floats are whole like meanwhile fractional can use type method check value an object pi...

no reviews yet
Please Login to review.