Skip to content

Commit b63aa3d

Browse files
Improve & clean code
1 parent ce7e2fb commit b63aa3d

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

find_cube_root.py

+5-5
Original file line numberDiff line numberDiff line change
@@ -19,12 +19,12 @@ def cubeRoot():
1919

2020
cubeRoot()
2121

22-
cont = str(input("Would you like to continue: "))
23-
while cont == "yes":
22+
cont = input("Would you like to continue: ")
23+
while cont == "yes" or "y":
2424
cubeRoot()
25-
cont = str(input("Would you like to continue: "))
26-
if cont == "no":
25+
cont = input("Would you like to continue: ")
26+
if cont == "no" or "n":
2727
exit()
2828
else:
2929
print("Enter a correct answer(yes or no)")
30-
cont = str(input("Would you like to continue: "))
30+
cont = input("Would you like to continue: ")

0 commit comments

Comments
 (0)