text = ["this","is","text"]
print(f"hello and {text, end=","}")
Input In [58]
print(f"hello and {text, end=","}")
^
SyntaxError: f-string: expecting '}'
I am trying to remove brackets and commas while using an f string
........................