In: Computer Science
f_access = open("queries.json")
query_string = f_access.read()
p_object_queries = json.loads(query_string)
f_access.close()
What is the type of f_access?
What is the type of query_string?
What is the type of p_object_queries?
Thank you!!!!
What is the type of f_access?:
Answer: _io.TextIOWrapper
What is the type of query_string?:
answer: STRING
What is the type of p_object_queries?:
answer: Dictionary
----------------------------------------------------------------------------------------------------
Your ThumbsUp on this answer matters to me a lot :)
----------------------------------------------------------------------------------------------------
For any further clarifications, reach out in the comments
section