Conditionals in python
- Refer Here for programiz.
- if condition
if <boolean expression>:
....
....
....

- if else
if <boolean expression>:
....
....
else:
....
....
....

- if elif else:

-
nesting if’s : This is writing if statements with in if statements

-
Refer Here for jupyter notebook updated with above examples
Problem: Grades of a student
- We will be given average of marks and we are supposed to print grades

-
look into notebook
-
Exercise:
- input will be salary in INR
- output should tax slab rate

