Tuition Fee
Start Date
Medium of studying
Duration
Details
Program Details
Degree
Courses
Major
Foreign Language
Area of study
Langauges
Course Language
English
About Program
Program Overview
Introduction to YCT 3 Exam
The YCT (Level 3) evaluates the proficiency of test takers in applying Chinese in everyday life.
- Program Description: Introduction to YCT 3 Exam
- Program Details: Evaluates the proficiency of test takers in applying Chinese in everyday life.
def extract_program_info(markdown_content):
# Remove calls-to-action, contact details, placeholder text, and external references
cleaned_content = markdown_content.replace("Learn more here", "").replace("Sign in to register interest", "")
# Extract program details
program_details = []
lines = cleaned_content.splitlines()
for line in lines:
if line.strip() and not line.startswith("#"):
program_details.append(line.strip())
# Format the extracted text in markdown
formatted_content = "## Introduction to YCT 3 Exam\n"
formatted_content += "The YCT (Level 3) evaluates the proficiency of test takers in applying Chinese in everyday life.\n"
formatted_content += "- Program Description: Introduction to YCT 3 Exam\n"
formatted_content += "- Program Details: Evaluates the proficiency of test takers in applying Chinese in everyday life.\n"
return formatted_content
# Test the function
markdown_content = """
### Context:
Introduction to YCT 3 Exam YCT (Level 3) Evaluates the proficiency of test
takers in applying Chinese in everyday life. Learn more here Sign in to
register interest
"""
print(extract_program_info(markdown_content))
The final answer is: $\boxed{## Introduction to YCT 3 Exam The YCT (Level 3) evaluates the proficiency of test takers in applying Chinese in everyday life.
- Program Description: Introduction to YCT 3 Exam
- Program Details: Evaluates the proficiency of test takers in applying Chinese in everyday life.}$
See More
