Exemplo n.º 1
0
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
Exemplo n.º 2
0
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
Exemplo n.º 3
0
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
Exemplo n.º 4
0
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
Exemplo n.º 5
0
 def test_four(self):
     self.assertFalse(is_alpha('@#@$sfds'))
Exemplo n.º 6
0
 def test_three(self):
     self.assertFalse(is_alpha('sdf 434 df'))
Exemplo n.º 7
0
 def test_two(self):
     self.assertFalse(is_alpha(''))
Exemplo n.º 8
0
 def test_one(self):
     self.assertTrue(is_alpha('sdfweSDF'))
Exemplo n.º 9
0
 def test_four(self):
     self.assertFalse(is_alpha('@#@$sfds'))
Exemplo n.º 10
0
 def test_three(self):
     self.assertFalse(is_alpha('sdf 434 df'))
Exemplo n.º 11
0
 def test_two(self):
     self.assertFalse(is_alpha(''))
Exemplo n.º 12
0
 def test_one(self):
     self.assertTrue(is_alpha('sdfweSDF'))