def func_twelve(): another_calc_dec = another_calc() cleaned_calc_dec = rem_comm_spaces(another_calc_dec) alpha_bool_value = is_alpha(cleaned_calc_dec) while alpha_bool_value == False: print("I'm sorry, but I did not understand that. \ Please try again. " + '\n') another_calc_dec = another_calc() cleaned_calc_dec = rem_comm_spaces(another_calc_dec) alpha_bool_value = is_alpha(cleaned_calc_dec) continue return another_calc_dec
def func_nine(): calc = what_calc() calc_cleaned = clean_what_calc(calc) alpha_bool_value = is_alpha(calc_cleaned) while alpha_bool_value == False: print("I'm sorry, but you have entered a number, \ a punctuation mark, or the empty string. Please try again" + '\n') calc = what_calc() calc_cleaned = clean_what_calc(calc) alpha_bool_value = is_alpha(calc_cleaned) continue return calc_cleaned return calc_cleaned
def test_four(self): self.assertFalse(is_alpha('@#@$sfds'))
def test_three(self): self.assertFalse(is_alpha('sdf 434 df'))
def test_two(self): self.assertFalse(is_alpha(''))
def test_one(self): self.assertTrue(is_alpha('sdfweSDF'))