What is Python?
Why Python?
Python Syntax and Identation
Python Variables
Python comments
100

Can Python handle big data?

Yes.
100

How can Python be treated?

Python can be treated in a procedural way, an object-oriented way or a functional way.

100

Will Python correct me if I skip an identation?

Yes, Python will give you an error if you skip the indentation.

100

Do variables have to be declared with a type?

Variables do not need to be declared with any particular type.

100

What can be used to explain Pyhton code?

Comments.

200

Does python make programming harder?

No, python makes programming easier.

200

Does python have an interpreter system?

Yes, this makes prototyping easier and faster.

200

What does Python use Identation for?

Python uses indentation to indicate a block of code.

200

Does Python have a command for declaring a variable?

Python has no command for declaring a variable.

200

Where do I place a comment?

At the end of the line.


300

Who created Python?

Guido van Rossum

300

Does Python use new lines to complete a command?

Python uses new lines to complete a command, as opposed to other programming languages which often use semicolons or parentheses.

300

Do you have to use a .py file extension on every python syntax process?

No, you can also dirrectly write it on the Command Line.

300

What is a variable?

Variables are containers for storing data values.

300

Can I use a # in a comment?

No, Python will ignore them. 

400

Name one thing Python is used for.

Web development, software development, mathematics, system scripting.

400

What was Python designed for?

Python was designed for readability.

400

What is identation?

Indentation refers to the spaces at the beginning of a code line.

400

How do I create a variable?

Variables are created when you assign a value to it.

400

How do I add a multiline?

To add a multiline comment you could insert a # for each line.

500

Can the interpreter in python detect bugs?

Yes, it is the main reason it remains popular.

500

What does Python rely on?

Python relies on indentation, using whitespace, to define scope.

500

What are the two ways I can excute a python syntax?

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.

500

What is casting?

Casting helps specify the data type of a variable.


500

What are 3 ways Python comments can be used for?

Comments can be used to explain Python code.

Comments can be used to make the code more readable.

Comments can be used to prevent execution when testing code.