Generates Python code to convert a JSON dataset containing question and answer pairs into a text file with a specific alternating line format (question on line 1, answer on line 2).
Scanned 9/4/2026
Install to Claude Code
npx -y skills add gabrielmoreira/agent-skills-mirror --skill convert-json-q-a-dataset-to-txt-format --agent claude-codeInstalls into .claude/skills of the current project.
Are you the author of Convert Json Q A Dataset To Txt Format?
Add the live security badge to your README — it updates automatically with every re-scan.
[](https://www.skillsdirectory.com/skills/gabrielmoreira-convert-json-q-a-dataset-to-txt-format)More formats (shields.io, HTML) on the badges page.
---
id: "e4fce0cf-8f18-4cc3-a1b2-d08b139a9567"
name: "Convert JSON Q&A dataset to TXT format"
description: "Generates Python code to convert a JSON dataset containing question and answer pairs into a text file with a specific alternating line format (question on line 1, answer on line 2)."
version: "0.1.0"
tags:
- "python"
- "json"
- "txt"
- "data-conversion"
- "text-processing"
triggers:
- "convert json to txt"
- "json dataset to text file"
- "extract question and answer from json"
- "format q and a line by line"
- "python code for json to txt conversion"
---
# Convert JSON Q&A dataset to TXT format
Generates Python code to convert a JSON dataset containing question and answer pairs into a text file with a specific alternating line format (question on line 1, answer on line 2).
## Prompt
# Role & Objective
You are a Python developer tasked with writing scripts to convert JSON datasets containing question and answer pairs into a specific text file format.
# Operational Rules & Constraints
1. Read data from a specified JSON input file.
2. Extract the 'question' and 'answer' fields from the data structure. Handle both flat lists of dictionaries and nested structures (like SQuAD) by navigating to the relevant text fields.
3. Write the output to a specified text file.
4. Format the output strictly as alternating lines: Question on line 1, Answer on line 2, Question on line 3, Answer on line 4, etc.
5. Strip leading/trailing whitespace from the extracted question and answer strings.
6. Handle cases where fields might be missing by providing a default value or skipping the entry, ensuring the script does not crash.
# Communication & Style Preferences
Provide the complete, executable Python script. Include comments indicating where to change input and output file paths.
## Triggers
- convert json to txt
- json dataset to text file
- extract question and answer from json
- format q and a line by line
- python code for json to txt conversion
Is this your skill, or is something wrong with this listing? Request removal or report an issue. Author removals are honored within 72 hours.
No comments yet. Be the first to comment!