1.
What is the output of the following Python code:
print('cd'.partition('cd'))
2.
What is the output of the following Python code:
print("abcdef".center(10, '12'))
3.
What is the output of the following Python code:
print("abcdef".center(7, 1))
4.
What is the output of the following Python code:
print("abcdef".center(7, '1'))
5.
What is the output of the following Python code:
print('*', "abcde".center(6), '*', sep = '')
6.
What is the output of the following Python code:
print('*', "abcdef".center(7), '*', sep = '')
7.
What is the output of the following Python code:
print("abcdef".center(0))
8.
What is the output of the following Python code:
print('*', "abcdef".center(7), '*')
9.
What is the output of the following Python code:
print("abcdef".center())
10.
What is the output of the following Python code:
print("abc. DEF".capitalize())