1.
What is the output of the following Python code:
print('__foo__'.isidentifier())
2.
What is the output of the following Python code:
print(''.isdigit())
3.
What is the output of the following Python code:
print('0xa'.isdigit())
4.
What is the output of the following Python code:
print('a B'.isalpha())
5.
What is the output of the following Python code:
print('ab'.isalpha())
6.
What is the output of the following Python code:
print('ab,12'.isalnum())
7.
What is the output of the following Python code:
print('{0:.2}'.format(1 / 3))
8.
What is the output of the following Python code:
print('{0:.2%}'.format(1 / 3))
9.
What is the output of the following Python code:
print('ab12'.isalnum())
10.
What is the output of the following Python code:
print('Hello World'.istitle())