What Is Python?
Python Indentation
Python Syntax
Python Loops
Python Comments
100

An interpreted programming language.

Python.

100

What is Indentation?

The spaces at the beginning of a code line. 

100

How can Python syntax be executed?

By writing directly in the Command Line, or by creating a python file on the server, using the .py file extension, and running it in the Command Line.

100

A feature or concept that will allow code to repeat over and over

What is a Loop?

100

Which symbol does a comment start with?

A hashtag. (#)

200

How many versions does Python have?

3.

200

What does Indentation do in other programs?

Readability.

200

Another name for the Command Line.

cmd.exe

200

A type of loop that we do not know the exact # of times it will continue for

What is a While Loop

200

Why has Python a commenting capability?

In-code documentation, readability, and to prevent execution of code. 

300

Name 3 uses for Python.

Ex: Handling big data and performing complex mathematics, being used on a server to create web applications, using it alongside software to create workflows, production-ready software development, connecting to database systems, reading and modifying files, rapid prototyping.

300

What will happen if you skip the indentation in Python?

You will get a syntax error.
300

What does it mean that Python is an interpreted programming language?

That Python files are written in a text editor and then placed into the python interpreter to be executed.

300

A While Loop that never ends

What is an Infinite Loop?

300

What will happen if you put a comment at the end of a line?

Python will ignore the rest of the line. 

400

What can Python be used for?

web development, software development, mathematics, and system scripting.

400

What is Indentation used for in Python?

To indicate a block of code.

400

What is Python's file extension?

.py

400

A type of loop that only continues for a set amount of times.

What is a For Loop?

400

What is Python syntax for a Multi Line comment?

None, you should add a # before every line. 

500

How are we using python

for school


500

What is the most common number of spaces?

4.

500

when are () used

after Statments

500

A function that has a start and end value

What is a range?

500

What is a non intended way of adding Multi Line comments? 

Using a multiline string with no variables. 

M
e
n
u