Post

@Python_Dv B) 6
Step-by-step:
1. A string is assigned to variable x: "Python" contains 6 characters
2. len() is a built-in function
It returns the number of characters/items in a sequence (string, list, tuple, etc.)
3. Prints the length of the string : 6
English

