def test_paranthese_bien_4(self): self.assertEqual(ex2("((((((()))))))"), "(((((((.)))))))")
def test_non_parenthese_4(self): value_returned = str(ex2("(()))")).lower() self.assertIn("corr", value_returned)
def test_paranthese_bien_1(self): self.assertEqual(ex2("()"), "(.)")