Python
Python

Python

In this blog, i'll provide various lessons and tips for begginers and not only (later) about Python (version 3.xx), how to get started, how to use it, how to build an AI, etc. I'll try to cover more parts, but easy to understand, maybe 1-2 lessons/day.


Python 3: Lesson 4 - Variables & Data Types

18 Sep 2019 2 minute read 2 comments CN00b

Hi people, In Python, to declare something, you need to declare a variable. What is a variable? A variable is just a reserved memory location, to store a value; is created in the moment when you store the value to it. Comparative to other programming...

Python 3: Lesson 3 - Basic Syntax & Rules

18 Sep 2019 1 minute read 0 comments CN00b

Hi people, Before diving into Python programming, there are some rules that must be respected 100%, orelse you'll encounter a lot of errors, nerves, angry states and maybe, broken keyboards! :) The rules are simple and basic: 1. Indentation - Python...

Python 3: Lesson 2 - Choosing the best Editor/Interpreter for you

16 Sep 2019 2 minute read 4 comments CN00b

Hello people, As i said in the previous lesson, Python comes with his ows interpreter, called IDLE. It's a GUI( Graphical User Interface) and more fun than the cmd window.To run IDLE, go in your Start Menu and type IDLE. This works same as the cmd wi...

Python 3: Lesson 1 - Installation & Your first line of code

16 Sep 2019 2 minute read 2 comments CN00b

Hi people, In this lesson i'll show you how to install, setup and write your first line of code in Python.Head to the official site and in the upper left side you'll see Downloads tab. Select your operating system (e.g. Windows) and make sure you dow...

Python 3: Lesson 0 - The Beginning

14 Sep 2019 1 minute read 8 comments CN00b

Hi people, This is the first "lesson" from a set of tutorials about Python, that i'll write for you. I'll try to write short and concise info, not to get you bored with wall of text.First lesson and it starts with 0? Starts with 0, because in program...