Explanation:
The correct answers are:
C. 'not' not in 'in'
The string 'not' is not present in ‘in'.
The not in operator correctly identifies that 'not' is not a substring of 'in', so this evaluates to True.
D. 't'.upper() in 'Thames'
't'.upper() converts 't' to ’T'.
The in operator checks if 'T' is a substring of ‘Thames'.
'T' is present as the first character of 'Thames', so this evaluates to True.
A voting comment increases the vote count for the chosen answer by one.
Upvoting a comment with a selected answer will also increase the vote count towards that answer by one.
So if you see a comment that you already agree with, you can upvote it instead of posting a new comment.
flthymcnsty
1 month agoKuaciCorn
1 month, 2 weeks ago