_var = ( "a b c" "d e f" "g h k")
print(_var)
print(type(_var))
I was wondering why is this of type string and why is it concatenated. I was also wondering why parenthesis are used to make this collection. I encountered this code block and was curious.