Lesson - 08 : Python3 - Python Keywords
**************************************************
Python Core PlayList : https://www.youtube.com/watch?v=_laUbUtzMOs&list=PLxWzQv_1I_ACFomYYjF0HMqmu-w2pyqta
Python Advanced PlayList : https://www.youtube.com/watch?v=RSKv-gSKrpA&list=PLxWzQv_1I_ACjp_DGDwHlTZlndqi4cu0_
**************************************************
Python Keywords:
Keywords are the reserved words in Python. We cannot use a keyword as variable name, function name or any other identifier.
Here's a list of all keywords in Python Programming
1. None : None is a special constant in Python that represents the absence of a value or a null value.
2. and, or , not : and, or, not are the logical operators in Python. and will result into True only if both the operands are True.
3. As : as is used to create an alias while importing a module. It means giving a different name (user-defined) to a module while importing it.
4. Assert : assert is used for debugging purposes.
5. break, continue : break and continue are used inside for and while loops to alter their normal behavior.
6. Class : class is used to define a new user-defined class in Python.
7. Def : def is used to define a user-defined function.
8. Del : del is used to delete the reference to an object. Everything is object in Python. We can delete a variable reference using del
9. if, else, elif : if, else, elif are used for conditional branching or decision making.
10. except, raise, try : except, raise, try are used with exceptions in Python.
11. Finally : finally is used with try…except block to close up resources or file streams.
12. For : for is used for looping. Generally we use for when we know the number of times we want to loop.
13. from, import : import keyword is used to import modules into the current namespace. from…import is used to import specific attributes or functions into the current namespace.
14. Global : global is used to declare that a variable inside the function is global (outside the function).
Sample Projects : https://github.com/SadaLearningHub1/Python3-Core-And-Advanced-Examples
Что делает видео по-настоящему запоминающимся? Наверное, та самая атмосфера, которая заставляет забыть о времени. Когда вы заходите на RUVIDEO, чтобы посмотреть онлайн «Lesson - 08 : Python3 - Python Keywords», вы рассчитываете на нечто большее, чем просто загрузку плеера. И мы это понимаем. Контент такого уровня заслуживает того, чтобы его смотрели в HD 1080, без дрожания картинки и бесконечного буферизации.
Честно говоря, Rutube сегодня — это кладезь уникальных находок, которые часто теряются в общем шуме. Мы же вытаскиваем на поверхность самое интересное. Будь то динамичный экшн, глубокий разбор темы от любимого автора или просто уютное видео для настроения — всё это доступно здесь бесплатно и без лишних формальностей. Никаких «заполните анкету, чтобы продолжить». Только вы, ваш экран и качественный поток.
Если вас зацепило это видео, не забудьте взглянуть на похожие материалы в блоке справа. Мы откалибровали наши алгоритмы так, чтобы они подбирали контент не просто «по тегам», а по настроению и смыслу. Ведь в конечном итоге, онлайн-кинотеатр — это не склад файлов, а место, где каждый вечер можно найти свою историю. Приятного вам отдыха на RUVIDEO!
Видео взято из открытых источников Rutube. Если вы правообладатель, обратитесь к первоисточнику.