Answer:
The answer is A or C. I hope this helps narrow down your answers.
Your code is improperly indented.
The correct code looks like:
def main():
while True:
name = input("Please enter a name: (Nope to end) ")
if name == "Nope":
return
print("Nice to meet you {}".format(name))
main()
I hope this helps!
Answer: Below
Explanation:
Prescribe variable as string, and anything assigned to it will be a string.
Example:
String java_string;
java_string = "Hello world";