02
[Link]
DAY 03: [Link]
If you know fundamentals, then 80% work is done
03 [Link]
Bricks of Python – Fundamentals:
Brick-05: Operators
Let’s see the operators used in python programs one by one:
1. Arithmetic Operators: Mathematical operations
04 [Link]
2. Assignment Operators:
05 [Link]
3. Comparison Operators: returns either “True”/ “False”
1. Equal operator (“==”):
Ex:
2. Not Equal operator (“!=”):
Ex:
06 [Link]
3. Greater than (“>”):
Ex:
4. Greater than (or) Equal to (“>=”):
Ex:
5. Less than (“<”):
Ex:
6. Less than (or) Equal to(“<=”):
write a program for this
Execution చాలా easy పై programని impliment చేయండి [link]
4. Logical Operators: returns either “True”/ “False”
07 [Link]
1. “and”:
Ex:
2. “or”:
Ex:
3. “not”:
Ex:
08 [Link]
5. Membership Operators:
1. “in”: ఒక example అర్ధం చేస్ కండి.
Ex:
2. “not in”: objectలో specific value లేకపో తే true ని
return ఈ python operator.
Ex:
చదివితే రావడానికి ఇది social కాదు python ఇక్కడ implement చేయండి [link]
[Link]
Day-03 Summary:
We explored and implemented 5 operators in python.