Computer Science, asked by shuvoz, 5 months ago

What will be the output of the following Python code snippet?

print('Python is fun'.title())​

Answers

Answered by wwwshaikhsaleem777
2

Answer:

atoz atoz atoz atoz a to z ato z a to z a to z

Answered by Beksie
0

Answer:

Output is:

Python Is Fun

Explanation:

The title() method returns a string where the first letter of every word is in uppercase.

Similar questions