Python Quiz

391. What is the result of:

print([1, 2, 3][1])
392. What will this print?

print('python'.isalpha())
393. Which method is used to convert all characters in a string to uppercase?
394. Which of the following returns a dictionary's values?
395. What does this expression evaluate to?

not (10 > 5)
396. What is the output of:

print(type([]) == list)
397. What will this return?

min([5, 3, 9])
398. What does the `del` keyword do?
399. Which function returns the Unicode code of a character?
400. What is the output of:

print(type((1)))

Explore Programming Topics