def calculate_phases_score(aneurysm_size, age, hypertension, smoking): score = 0 # Calcola il punteggio in base alla dimensione dell'aneurisma if aneurysm_size <= 7: score += 1 elif aneurysm_size <= 15: score += 2 else: score += 3 # Calcola il punteggio in base all'età if age <= 60: score += 1 else: score += 2 # Calcola il punteggio in base all'ipertensione if hypertension: score += 2 # Calcola il punteggio in base al fumo if smoking: score += 3 return score # Esempio di utilizzo phases_score = calculate_phases_score(10, 65, True, True) print("Il phases score è:", phases_score) Delayed enhancing lesions – Lab Neurovascolare

Delayed enhancing lesions after coil embolization of aneurysms: clinical experience and benchtop analyses

Oh SW1,2, Shin NY1,3, Lee HJ1, Kim BM1, Kim DJ1. Abstract BACKGROUND: Foreign body emboli during endovascular treatment (EVT) may cause delayed enhancing lesions (DELs). OBJECTIVE: To report our experiences of this complication in patients treated for cerebral aneurysms and to investigate the cause of the lesions by benchtop analyses. METHODS: Three patients with DELs Read more about Delayed enhancing lesions after coil embolization of aneurysms: clinical experience and benchtop analyses[…]