У нас вы можете посмотреть бесплатно variables, expressions, statements, tuple assignment, operators, comments in python | P9 | или скачать в максимальном доступном качестве, видео которое было загружено на ютуб. Для загрузки выберите вариант из формы ниже:
Если кнопки скачивания не
загрузились
НАЖМИТЕ ЗДЕСЬ или обновите страницу
Если возникают проблемы со скачиванием видео, пожалуйста напишите в поддержку по адресу внизу
страницы.
Спасибо за использование сервиса ClipSaver.ru
Topic covered in this video :- variables, expressions, statements, tuple assignment, operators, comments in python tamil | TAMIL | UNIT-2 CSE | P9 | #GE3151 | Quick Through | PROBLEM SOLVING AND PYTHON PROGRAMMING for computer science engineering in 1st semester playlist of PROBLEM SOLVING AND PYTHON PROGRAMMING subject :- • PROBLEM SOLVING AND PYTHON PROGRAMMING in ... join to our telegram channel to download the pdf used in this video: https://t.me/cseengineeringnotes Join this channel to get access to perks: / @quickthrough Chapters: 00:00 - Topic Covered 00:53 - what is VARIABLES in python? 03:40 - what is EXPRESSIONS in python? 06:13 - what is STATEMENTS in python? 12:15 - Difference between a Statement and an Expression 16:11 - TUPLE ASSIGNMENTS in python 20:06 - COMMENTS in python 30:03 - OPERATORS in python 31:15 - Arithmetic Operator 33:11 - Comparison Operator / Relational Operator 38:05 - Assignment Operator 40:50 - Logical Operator 44:11 - Bitwise Operator 48:37 - Membership Operator 50:31 - Identity Operator 51:45 - PRECEDENCE OF PYTHON OPERATORS 58:51 - Next Topic GE3151- PROBLEM SOLVING AND PYTHON PROGRAMMING UNIT – 2 2.3 - variables, expressions, statements, tuple assignment, precedence of operators, comments VARIABLES A variable is nothing but a reserved memory location to store values. A variable in a program gives data to the computer. EXPRESSIONS An Expression is a combination of values, variables and operators. STATEMENTS A Statement is an instruction that a python interpreter can execute.IN python end of a statement is marked by a newline character. c=a+b Multiline statement can be used in single line using semicolon(;) Difference between a Statement and an Expression A statement is a complete line of code that performs some action, while an expression is any section of the code that evaluates to a value. Expressions can be combined ―horizontally into larger expressions using operators, while statements can only be combined vertically by writing one after another, or with block constructs. Every expression can be used as a statement, but most statements cannot be used as expressions COMMENTS Comments are non-executable statements which explain what program does. There are two ways to represent a comment. Single Line Comment Begins with # hash symbol Multi Line Comment Multi line comment begins with a double quote and a single quote and ends with the OPERATORS: Operators are the construct which can manipulate the value of operands. Types of Operator: 1. Arithmetic Operator 2. Comparison Operator (or) Relational Operator 3. Assignment Operator 4. Logical Operator 5. Bitwise Operator 6. Membership Operator 7. Identity Operator If more than one operator exists in the same group. These operators have the same precedence. When two operators have the same precedence, associativity helps to determine which the order of operations. Associativity is the order in which an expression is evaluated that has multiple operator of the same precedence. Almost all the operators have left-to-right associativity. For example, multiplication and floor division have the same precedence. Hence, if both of them are present in an expression, left one evaluates first