Python – Basic Syntax

Course Curriculum

Python – Basic Syntax

The Python language has many similarities to Perl, C, and Java. However, there are some definite differences between the languages.

First Python Program

Let us execute programs in different modes of programming.

Interactive Mode Programming

Invoking the interpreter without passing a script file as a parameter brings up the following prompt −

$ python
Python 3.7.4 (default, Aug  9 2019, 18:34:13)
[MSC v.1915 64 bit (AMD64)]
Type "help", "copyright", "credits" or "license" for more information.
>>>

Type the following text at the Python prompt and press the Enter −

>>> print("Hello, Python!")
Hello, Python!

Script Mode Programming

Invoking the interpreter with a script parameter begins execution of the script and continues until the script is finished. When the script is finished, the interpreter is no longer active.
Let us write a simple Python program in a script. Python files have extension .py. Type the following source code in a test.py file −

print("Hello, Python!")

We assume that you have Python interpreter set in PATH variable. Now, try to run this program as follows −

$ python test.py

This produces the following result −

Hello, Python!

Let us try another way to execute a Python script. Here is the modified test.py file −

print("Hello, Python!")

Python Identifiers

A Python identifier is a name used to identify a variable, function, class, module or other object. An identifier starts with a letter A to Z or a to z or an underscore (_) followed by zero or more letters, underscores and digits (0 to 9).
Python does not allow punctuation characters such as &commat, $, and % within identifiers. Python is a case sensitive programming language. Thus, Manpower and manpower are two different identifiers in Python.
Here are naming conventions for Python identifiers −

  • Class names start with an uppercase letter. All other identifiers start with a lowercase letter.
  • Starting an identifier with a single leading underscore indicates that the identifier is private.
  • Starting an identifier with two leading underscores indicates a strongly private identifier.
  • If the identifier also ends with two trailing underscores, the identifier is a language-defined special name.

    Reserved Words

    The following list shows the Python keywords. These are reserved words and you cannot use them as constant or variable or any other identifier names. All the Python keywords contain lowercase letters only.

    and exec not
    assert finally or
    break for pass
    class from print
    continue global raise
    def if return
    del import try
    elif in while
    else is with
    except lambda yield

    Lines and Indentation

    Python provides no braces to indicate blocks of code for class and function definitions or flow control. Blocks of code are denoted by line indentation, which is rigidly enforced.
    The number of spaces in the indentation is variable, but all statements within the block must be indented the same amount. For example −

    if 10>5 :
    print("10 is greater than 5")
    else :
    print("10 is not greater than 5")

    However, the following block generates an error −

    if 10>5 :
    print("10 is greater than 5")
    else :
    print("10 is not greater than 5")
    File "indentation.py", line 2
    print("10 is greater than 5")
    ^
    IndentationError: expected an indented block

    Multi-Line Statements

    Statements in Python typically end with a new line. Python does, however, allow the use of the line continuation character () to denote that the line should continue. For example −

    total = 5 + 
    10 + 
    30
    print(total)

    Statements contained within the [], {}, or () brackets do not need to use the line continuation character. For example −

    days = ['Jan', 'Feb', 'March',
    'Apr', 'May','jun',
    'jul', 'Aug','sep',
    'oct','nov','dec']
    print(days)

    Quotation in Python

    Python accepts single ('), double (") and triple (''' or """) quotes to denote string literals, as long as the same type of quote starts and ends the string.
    The triple quotes are used to span the string across multiple lines. For example, all the following are legal −

    word = 'word'
    sentence = "This is a sentence."
    paragraph = """This is a paragraph. It is
    made up of multiple lines and sentences."""

    Comments in Python

    A hash sign (#) that is not inside a string literal begins a comment. All characters after the # and up to the end of the physical line are part of the comment and the Python interpreter ignores them.

    # First comment
    print ("Hello, Python!") # second comment

    This produces the following result −

    Hello, Python!

    You can type a comment on the same line after a statement or expression −

    name = "Madisetti" # This is again comment

    You can comment multiple lines as follows −

    # This is a comment.
    # This is a comment, too.

    Following triple-quoted string is also ignored by Python interpreter and can be used as a multiline comments:

    '''
    This is a multiline
    comment.
    '''

    Using Blank Lines

    A line containing only whitespace, possibly with a comment, is known as a blank line and Python totally ignores it.
    In an interactive interpreter session, you must enter an empty physical line to terminate a multiline statement.

    Waiting for the User

    The following line of the program displays the prompt, the statement saying “Press the enter key to exit”, and waits for the user to take action −

    input("nnPress the enter key to exit.")

    Here, "nn" is used to create two new lines before displaying the actual line. Once the user presses the key, the program ends. This is a nice trick to keep a console window open until the user is done with an application.

    Multiple Statements on a Single Line

    The semicolon ( ; ) allows multiple statements on the single line given that neither statement starts a new code block. Here is a sample snip using the semicolon −

    import sys; x = 'foo'; sys.stdout.write(x + 'n')

    Multiple Statement Groups as Suites

    A group of individual statements, which make a single code block are called suites in Python. Compound or complex statements, such as if, while, def, and class require a header line and a suite.
    Header lines begin the statement (with the keyword) and terminate with a colon ( : ) and are followed by one or more lines which make up the suite. For example −

    if expression :
    suite
    elif expression :
    suite
    else :
    suite

    Command Line Arguments

    Many programs can be run to provide you with some basic information about how they should be run. Python enables you to do this with -h −

    >python -h
    usage: python [option] ... [-c cmd | -m mod | file | -] [arg] ...
    Options and arguments (and corresponding environment variables):
    -b     : issue warnings about str(bytes_instance), str(bytearray_instance)
    and comparing bytes/bytearray with str. (-bb: issue errors)
    -B     : don't write .pyc files on import; also PYTHONDONTWRITEBYTECODE=x
    -c cmd : program passed in as string (terminates option list)
    -d     : debug output from parser; also PYTHONDEBUG=x
    -E     : ignore PYTHON* environment variables (such as PYTHONPATH)
    -h     : print this help message and exit (also --help)
    -i     : inspect interactively after running script; forces a prompt even
    if stdin does not appear to be a terminal; also PYTHONINSPECT=x
    -I     : isolate Python from the user's environment (implies -E and -s)
    -m mod : run library module as a script (terminates option list)
    -O     : remove assert and __debug__-dependent statements; add .opt-1 before
    .pyc extension; also PYTHONOPTIMIZE=x
    [ etc. ]

    You can also program your script in such a way that it should accept various options. Command Line Arguments is an advanced topic and should be studied a bit later once you have gone through rest of the Python concepts.

Python – Environment Setup (Prev Lesson)
(Next Lesson) Python – Variable Types
', { 'anonymize_ip': true });