Assuming that the snippet below has been executed successfully, which of the following expressions will evaluate to True? (Select two answers)
string = 'python' [::2]
string = string[-1] + string[-2]
string[0] == string[-1]
string is None
len (string] == 3
string[0] == 'o'
Submit