Which of the following expressions evaluate to True? (Choose two.)
Which of the following expressions evaluate to True? (Choose two.)
The expression 'in' in 'in' evaluates to True because the substring 'in' is indeed found within the string 'in'. The expression 't'.upper() in 'Thames' also evaluates to True because upper() converts 't' to 'T', and 'T' is present in the string 'Thames'.
B. 'in' in 'in' D. 't'.upper() in 'Thames'
I'm with the other person, BD