An interpreted programming language.
Python.
What is Indentation?
The spaces at the beginning of a code line.
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.
A feature or concept that will allow code to repeat over and over
What is a Loop?
Which symbol does a comment start with?
A hashtag. (#)
How many versions does Python have?
3.
What does Indentation do in other programs?
Readability.
Another name for the Command Line.
cmd.exe
A type of loop that we do not know the exact # of times it will continue for
What is a While Loop
Why has Python a commenting capability?
In-code documentation, readability, and to prevent execution of code.
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.
What will happen if you skip the indentation in Python?
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.
A While Loop that never ends
What is an Infinite Loop?
What will happen if you put a comment at the end of a line?
Python will ignore the rest of the line.
What can Python be used for?
web development, software development, mathematics, and system scripting.
What is Indentation used for in Python?
To indicate a block of code.
What is Python's file extension?
.py
A type of loop that only continues for a set amount of times.
What is a For Loop?
What is Python syntax for a Multi Line comment?
None, you should add a # before every line.
How are we using python
for school
What is the most common number of spaces?
4.
when are () used
after Statments
A function that has a start and end value
What is a range?
What is a non intended way of adding Multi Line comments?
Using a multiline string with no variables.