intro to python\nwhat type is the following variable?\nx=\hi there\\nfloat\nboolean\ninteger\nstring

intro to python\nwhat type is the following variable?\nx=\hi there\\nfloat\nboolean\ninteger\nstring
Answer
Brief Explanations:
In Python, when a variable is assigned text enclosed in quotes like "Hi there", it is of string type. Float is for decimal - numbers, boolean is for True/False values, and integer is for whole numbers without decimals.
Answer:
D. string