What will the following code display?
numbers = [1, 2, 3, 4, 5]
my_list = numbers[-3:]
print(my_list)
names = ['Jim', 'Jill', 'John', 'Jasmine']
if 'Jasmine' not in names:
print('Cannot find Jasmine.')
else:
print("Jasmine's family:")
print(names)
Already registered? Login
Not Account? Sign up
Enter your email address to reset your password
Back to Login? Click here