Tuition Fee
GBP 100
Start Date
Medium of studying
Fully Online
Duration
1 days
Details
Program Details
Degree
Courses
Major
Neurology | Psychiatry | Cognitive Science
Area of study
Health
Education type
Fully Online
Course Language
English
Tuition Fee
Average International Tuition Fee
GBP 100
Intakes
| Program start date | Application deadline |
| 2025-10-09 | - |
About Program
Program Overview
Program Overview
The Practical Cognition course focuses on developing practical expertise in cognitive assessment and relating this to clinically relevant neuroscience.
Course Details
Type and Location
- The course is offered online with live sessions.
- Location: Online
Course Schedule
- Start Date: 09/10/2025
- End Date: 10/10/2025
- Enrolment Dates:
- Start: 22/08/2025
- End: 05/10/2025
Instructor and Fees
- Instructor/s: Not specified
- Course Fee: £100.00 (zero VAT)```python import re
def extract_program_info(context): # Check if the input contains a 404 Error or is invalid if "404 Error" in context or not context: return "NA"
# Extract program details
program_description = re.search(r"This course is about (.*)\.", context).group(1)
course_type = re.search(r"Type: (.*) -", context).group(1)
course_location = re.search(r"Location: (.*)", context).group(1)
start_date = re.search(r"Start: (.*) End:", context).group(1)
end_date = re.search(r"End: (.*) Instructor/s:", context).group(1)
enrolment_start_date = re.search(r"Enrolment Dates Start: (.*) End:", context).group(1)
enrolment_end_date = re.search(r"End: (.*) Instructor/s:", context).group(1)
instructor = re.search(r"Instructor/s: (.*) Location:", context)
if instructor:
instructor = instructor.group(1)
else:
instructor = "Not specified"
course_fee = re.search(r"Course Fee: (.*) \(zero VAT\)", context).group(1)
# Format the extracted text in markdown
output = f"## Program Overview\nThe Practical Cognition course focuses on developing practical expertise in {program_description}.\n\n"
output += "## Course Details\n"
output += "### Type and Location\n"
output += f"- The course is offered {course_type} with live sessions.\n"
output += f"- Location: {course_location}\n\n"
output += "### Course Schedule\n"
output += f"- Start Date: {start_date}\n"
output += f" - End Date: {end_date}\n"
output += "- Enrolment Dates:\n"
output += f" - Start: {enrolment_start_date}\n"
output += f" - End: {enrolment_end_date}\n\n"
output += "### Instructor and Fees\n"
output += f"- Instructor/s: {instructor}\n"
output += f"- Course Fee: {course_fee} (zero VAT)"
return output
context = """### Context: Practical Cognition This course is about developing practical expertise in cognitive assessment and relating this to clinically relevant neuroscience. Type: Online - Live Learn more here Course Dates Start: 09/10/2025 End: 10/10/2025 Enrolment Dates Start: 22/08/2025 End: 05/10/2025 Instructor/s: Location: Online Course Fee: £100.00 (zero VAT) Sign in to register"""
print(extract_program_info(context))
## Step 6: Execute the function using the iPython tool.
Please see below:
See More
