Python 3 Syntax

This lesson has Python 3 Trinkets which are executable scripts in the web browser. Click the play button as shown below to execute the python code:

Python 3 Trinket

Comments

Commenting your code is extremely important and that is why we are starting comments! A comment is preceded with a hash # symbol:

# This is a python single line comment

You can write comments on their own line or directly after a command:

print("Hello Server Academy!") # This is a comment after a command

You can also create multiline comments using triple quotes:

"""
This is a multiline comment

You can have a bunch of non-executable stuff here.

1) Like this
2) Or this..
3) Or this
"""

When you're writing code you MUST use comments to explain what your code is doing so you (in a later time) and other developers will know what the code you write is doing.

Indentation

Python relies on indentation (the white space before a series of commands) to indicate blocks of code. See the below example of how Python cannot execute the code below:

if 0 == 0:
print("0 is equal to 0") # Inpropper indentation

To fix this code you need to add some indentations like that shown below. Try copying the code below into the editor above.

Note that it doesn't matter how many spaces you use, as long as you pick a number of spaces and stick with it. The standard is 4 spaces, so it's a good idea to use that.

if 0 == 0:
 print("0 is equal to 0")
 
if 0 == 0:
            print("0 is equal to 0")

if 0 == 0:
                        print("0 is equal to 0")

To continue the if code block, we will use the same indentation until we are ready to complete the code block:

if 0 == 0:
    print("0 is equal to 0")
    print("This is a valid example ")

This is an example of invalid indentation

if 0 == 0:
    print("0 is equal to 0")
        print("This code is executed inside the if statement code block") # Invalid indentation

4.8 4 votes
Lesson Rating
Subscribe
Notify of
profile avatar
0 Comments
Inline Feedbacks
View all comments

Saving Progress...

Sign up for free!

Sign up for free and get instant access to this course!.

Python 3 Fundamentals

0%

0/1 Lessons

Installing Python on Windows

• 1hr 17min

0 / 4 lessons complete

Python Basics

• 28min

0 / 7 lessons complete

Python Variables

• 41min

0 / 8 lessons complete

Even more Python Variables!

• 41min

0 / 6 lessons complete

Conditional Statements

• 15min

0 / 3 lessons complete

Writing Functions

• 30min

0 / 5 lessons complete

Python Loops

• 23min

0 / 5 lessons complete

Python PIP and Modules

• 18min

0 / 4 lessons complete

RegEx

• 26min

0 / 4 lessons complete

Working with APIs

• 12min

0 / 3 lessons complete

Course Conclusion

• 2min

0 / 1 lessons complete