Category: Python
Great guide on the Python language suitable even for beginners.
Python is a high-level programming language that is suitable for many fields. In fact, it can be used for distributed applications, system testing, scripting, etc. There are many large IT companies that use it.
Python is therefore a multi-paradigm programming language, that is, it supports both procedural programming and object-oriented programming. Being a high-level language, it has a very simple syntax to study and its main objectives are dynamism, simplicity and flexibility.
It also supports structured programming and many functional programming features.
In this guide, proposed on Creative Coding, we will also study some frameworks including flask and django, excellent for the web.
The most immediately recognizable features of Python are the untyped variables. In addition, the importance of indentation is highlighted. There are many standard libraries proposed that you can use.
It is also possible to write graphical user interfaces (GUI) using all major toolkits including Tkinter.
In this tutorial I also present countless examples and solved exercises with related explanations. Follow my lessons and write your considerations in the comments below.
So here are the topics covered in python
Introduction to the language, variables, arithmetic and assignment operators, strings and casting. How to insert data in inputs and display them with print. Error handling. How to exchange variables.
How to use the math library.
Comparison and Boolean operators.
Decision control structures: If else, if elif and if nested.
Loops: while and for. Break, continue and else.
Lists, tuples, dictionaries. Functions.
Use of the pygame module to create video games.
- 1
- 2
- 3
- …
- 9
- Next Page »