Q. What will be the output of the following Python code?
Code:
print('*', "abcde".center(6), '*', sep='')
β
Correct Answer: (B)
*abcde *
print('*', "abcde".center(6), '*', sep='')
You must be Logged in to update hint/solution