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.
What is a variable?
Containers for storing data values.
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
What's Python's command to declare a variable?
There is no command to declare a variable.
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.
When are variables created?
When you assign a value to them.
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
What does casting do?
It specifies the data type of a variable.
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
What does the command 'print()' do?
prints a string
What is a non intended way of adding Multi Line comments?
Using a multiline string with no variables.