What is a programing lenguage used for software and web development, system sripting and mathematics?
To explain Python code, to make the code more readable and to prevent execution when testing code.
Python syntax can be executed by...
...writing directly in the Command Line
Python syntax can be executed by...
... creating a python file on the server, using the .py file extension, and running it in the Command Line:
What does Python use to complete a comand?
New lines
Python can be used for...
... creating web aplications, workflows, conect to a database system, etc.
With what does a comment in Python start with?
With a #
Python has a set of built-in math functions, including an extensive math module, that allows you to...
...perform mathematical tasks on numbers.
Python uses indentation to indicate a block of code.
What hapens if you miss an indentation?
Python will give you an error
Python has syntax that allows developers to write what?
Programs with fewer lines than some other programming languages.
What is the most recent version of Python?
Python 3
In Python, is prototyping fast? Why?
Yes, because in Python the code can be executed as soon as it is written.
Python has a syntax similar to what?
The English Lenguage
In Python this is incorrect:
‘Hello‘
How do we correct it?
“Hello”
How can you create a variable on Python?
A variable is created the moment you first assign a value to it.
Who created Pyton?
Guido van Rossum
On what platforms does Python work on?
Windows, Mac, Linux, Raspberry Pi, etc
Random, Who was alexander the great?
King of macedonia
When was Python invented?
January 1994
What data basis does Python use?
MySQL and MongoDB databases
How can you cheek if you have Python installed in a Linux or Mac?
On linux open the command line or on Mac open the Terminal and type:
python --version
How can you cheek if you have Python installed in a Windows PC?
Search in the start bar for Python or run the following on the Command Line (cmd.exe):
C:\Users\Your Name>python --version
Name one rule for Python variables
What are the 3 numeric types in Python?
Does Python have a function to make a random number?
No