Inferring topic make a news alert

topic_list = [
“nasa”, “local government”, “engineering”,
“employee satisfaction”, “federal government”
]

Give your answer as list with 0 or 1 for each topic.

List of topics: {", ".join(topic_list)}
it give output as: [1, 0, 0, 1, 1]
Desired output must be
topic_list joined with specific labelled 1 or 0.

if somebody had resolved write me down.

For me, I appended the following to the prompt:

Make your response format: the topic, then :, last 0 or 1

With it, you can solve this problem.