24. Write expression to convert the values 17, len(‘ab’) to (i) integer (ii) str (iii) Boolean values / sa 11 cs chapter 7, sa 11 ip chapter 4, Uncategorized / By PythonCSIP CS IP int(17) str(17) bool(17 int(len('ab')) str(len('ab')) bool(len('ab'))