Intro To Python 3: Variables
Basics of Python...
Python 3 :-
To start programming in python3 we need to know some python Language Basics, such as; variables,
what they are and how to use them; also some basic functions that are included by default in
python3 like print, # or + and - in our example
definition by the book:
variables = is a reserved memory location to store values. in other words, restores data
to a place in computers memory.
our Definition:
variable = is a bag that stores data. data can be a number or a string (word).
For today's Example, We will be using some variables to show how they can be used...
also some basic math functions and how to print them out.
I will be using https://trinket.io/ to write and use the Python code..
#Example 1: we will make a small program that will display the sum of 2 numbers...
# we use hashtags to write a comment and python will ignore anything after the hashtags row
#Example 1:
# to calculate 2 numbers we need to assigin every number to a variable (or a bag).
num1 = 5 # we named our first bag as num1, a shurt cut for first number
#and gave it a value of 5 by the symbole of equal or =
num2 = 6 # we named our 2nd bag as num2 with the value of 6.
TotalOfNums= num1 + num2 # to get the sum of the values in num1 and num2 we have to tell
#Python to take num1's value which is 5 and add it to the value of num2 and set the sum to
#the bag that we named TotalOfNumbers.
#to print (show or disply) the value of TotalOfNumbers we use the print function like this..
print(ToatalOfNumbers)
#Now lets go to run the code...
++++++++++++++++++++++++++++++++++++
num1 = 5
num2 = 6
TotalOfNumbers = num1 + num2
print(TotalOfNumbers)
+++++++++++++++++++++++++++++++
Thanks for watching :)
Что делает видео по-настоящему запоминающимся? Наверное, та самая атмосфера, которая заставляет забыть о времени. Когда вы заходите на RUVIDEO, чтобы посмотреть онлайн «Intro To Python 3: Variables», вы рассчитываете на нечто большее, чем просто загрузку плеера. И мы это понимаем. Контент такого уровня заслуживает того, чтобы его смотрели в HD 1080, без дрожания картинки и бесконечного буферизации.
Честно говоря, Rutube сегодня — это кладезь уникальных находок, которые часто теряются в общем шуме. Мы же вытаскиваем на поверхность самое интересное. Будь то динамичный экшн, глубокий разбор темы от любимого автора или просто уютное видео для настроения — всё это доступно здесь бесплатно и без лишних формальностей. Никаких «заполните анкету, чтобы продолжить». Только вы, ваш экран и качественный поток.
Если вас зацепило это видео, не забудьте взглянуть на похожие материалы в блоке справа. Мы откалибровали наши алгоритмы так, чтобы они подбирали контент не просто «по тегам», а по настроению и смыслу. Ведь в конечном итоге, онлайн-кинотеатр — это не склад файлов, а место, где каждый вечер можно найти свою историю. Приятного вам отдыха на RUVIDEO!
Видео взято из открытых источников Rutube. Если вы правообладатель, обратитесь к первоисточнику.