Skip to content

Commit

Permalink
dodati videi
Browse files Browse the repository at this point in the history
  • Loading branch information
dlutov committed Dec 26, 2024
1 parent f4395e6 commit bae76f4
Show file tree
Hide file tree
Showing 6 changed files with 22 additions and 0 deletions.
3 changes: 3 additions & 0 deletions _sources/1_Osnove/1_4_Tipovi.rst
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,9 @@

Променљиве
-----------
.. raw:: html

<iframe width="780" height="420" src="https://www.youtube.com/embed/l11VRa8uYSk?si=yDzkeShVCJMvh8ii" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" referrerpolicy="strict-origin-when-cross-origin" allowfullscreen></iframe>

Текст и бројеве које желимо да користимо више пута можемо сачувати у променљиве. Променљиве служе да рачунар запамти вредности које смо му задали.
Сваку променљиву можемо да замислимо као полицу на којој нешто чувамо. У сваком тренутку то нешто можемо склонити са полице и заменити нечим другим.
Expand Down
4 changes: 4 additions & 0 deletions _sources/1_Osnove/1_5_Unos.rst
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,10 @@

Функција input() у Python-у се користи за унос података од корисника путем тастатуре. Она чита унос као стринг (текстуални податак) и омогућава интеракцију између корисника и програма.

.. raw:: html

<iframe width="780" height="420" src="https://www.youtube.com/embed/noi-O8B56sI?si=2scOLiRwqpGQpSt-" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" referrerpolicy="strict-origin-when-cross-origin" allowfullscreen></iframe>

Основна употреба input()
---------------------------

Expand Down
4 changes: 4 additions & 0 deletions _sources/2_Grananje/2_1_grananje.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@
Гранање
=======

.. raw:: html

<iframe width="780" height="420" src="https://www.youtube.com/embed/sD0uzG28eCw?si=XdHTt7XGm-ATAV-E" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" referrerpolicy="strict-origin-when-cross-origin" allowfullscreen></iframe>

Посматрамо следећи проблем:

.. questionnote::
Expand Down
3 changes: 3 additions & 0 deletions _sources/3_Petlje/3_1_while.rst
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
While петља
============

.. raw:: html

<iframe width="780" height="420" src="https://www.youtube.com/embed/ojHAFS5GlL0?si=bvGKGqV5kVwvBIrg" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" referrerpolicy="strict-origin-when-cross-origin" allowfullscreen></iframe>

У Пајтону, `while` петља се користи када желимо да понављамо одређени блок кода док неки услов остаје тачан.
Ова петља ће наставити да извршава кôд све док је услов `True`. Када услов постане `False`, петља се прекида и
Expand Down
3 changes: 3 additions & 0 deletions _sources/5_Liste/5_1_liste.rst
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
Листе
======

.. raw:: html

<iframe width="780" height="420" src="https://www.youtube.com/embed/XPATiGjr-Os?si=LoNqbbI242govAHC" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" referrerpolicy="strict-origin-when-cross-origin" allowfullscreen></iframe>

Шта је листа?
------------------
Expand Down
5 changes: 5 additions & 0 deletions _sources/8_funkcija/8_1_funkcija.rst
Original file line number Diff line number Diff line change
@@ -1,6 +1,11 @@
Шта је функција
=================

.. raw:: html

<iframe width="780" height="420" src="https://www.youtube.com/embed/KJunouxilpo?si=sPE5h4hXG28NegIa" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" referrerpolicy="strict-origin-when-cross-origin" allowfullscreen></iframe>


Функција је блок кода у Пајтону који је дизајниран да извршава одређени задатак. Функције нам омогућавају да групишемо кôд који можемо више пута да користимо без поновног писања истих делова.
Функције су кључни део модуларног програмирања јер омогућавају лакше одржавање кода, његово организовање и поновну употребу.

Expand Down

0 comments on commit bae76f4

Please sign in to comment.