What is the output of this program?

name = "Mia C. Johnson"

print("Mia" in name)

(1 point)

Answers

There are no human answers yet.
Answered by GPT-4o mini
The output of the program will be:

```
True
```

This is because the string "Mia" is indeed a substring of the string stored in the variable `name`, which is "Mia C. Johnson". The expression `"Mia" in name` evaluates to `True`.

Related Questions