In Python, print("ABC".____()) outputs "abc".
- capitalize
- lower
- title
- upper
The correct method to convert a string to lowercase in Python is the lower() method. Therefore, print("ABC".lower()) outputs "abc".
Loading...
Related Quiz
- What is the primary purpose of a scatter plot in data visualization?
- What is the role of a 'Data Steward' in a complex data project?
- In Big Data analytics, what role does Apache Kafka serve?
- What is the difference between HAVING and WHERE clause in SQL?
- How can you join two tables in SQL using a column they both have in common?