$$ \newcommand{\floor}[1]{\left\lfloor{#1}\right\rfloor} \newcommand{\ceil}[1]{\left\lceil{#1}\right\rceil} \renewcommand{\mod}{\,\mathrm{mod}\,} \renewcommand{\div}{\,\mathrm{div}\,} \newcommand{\metar}{\,\mathrm{m}} \newcommand{\cm}{\,\mathrm{cm}} \newcommand{\dm}{\,\mathrm{dm}} \newcommand{\litar}{\,\mathrm{l}} \newcommand{\km}{\,\mathrm{km}} \newcommand{\s}{\,\mathrm{s}} \newcommand{\h}{\,\mathrm{h}} \newcommand{\minut}{\,\mathrm{min}} \newcommand{\kmh}{\,\mathrm{\frac{km}{h}}} \newcommand{\ms}{\,\mathrm{\frac{m}{s}}} \newcommand{\mss}{\,\mathrm{\frac{m}{s^2}}} \newcommand{\mmin}{\,\mathrm{\frac{m}{min}}} \newcommand{\smin}{\,\mathrm{\frac{s}{min}}} $$

Prijavi problem


Obeleži sve kategorije koje odgovaraju problemu

Još detalja - opišite nam problem


Uspešno ste prijavili problem!
Status problema i sve dodatne informacije možete pratiti klikom na link.
Nažalost nismo trenutno u mogućnosti da obradimo vaš zahtev.
Molimo vas da pokušate kasnije.

Karel

So, what is programming actually?

A Program is a set of instructions for a computer. Everything that computers do, however diverse and complex, ultimately comes down to following these instructions, that is, execution of a program. By writing programs, you actually tell the computer: do this, do that. If the program is correctly written, when it is executed, the computer will actually do what you told it to do. Writing a program for a computer is what we call programming.

To speak to a computer, we have to use special languages, which are called programming languages​​. One of these languages is Python. Here we will practice writing programs in Python.

Some programming skills do not depend on the programming language we use to write a computer program in. The aim of these lessons is to help you master those general skills, which some people call computational thinking. We will deal with Python’s special features (that are not present in other programming languages) only occasionally, when those features are necessary for understanding parts of a program being disscussed.