Write an expression that evaluates to True if the str associated with s starts with "p". Test your expression with two different strings. In test 1, 5 = "parameter". In test 2, s = 'Parameter'. In [6]: # Place your code here. 12 13 Problem 7 Write an expression that returns True if the str associated with s ends with "ism". Test your expression with two different strings. In test 1, S = "capitalism". In test 2, s = 'religion'. In [7]: # Place your code here.