diff --git a/10_challenge/10_challenge.py b/10_challenge/10_challenge.py index 7d1edf8..304d33b 100644 --- a/10_challenge/10_challenge.py +++ b/10_challenge/10_challenge.py @@ -8,8 +8,8 @@ # print buzz for multiples of 5 # print fizzbuzz for multiples of 3 and 5" """ -import fizzbuzz +import fizzbuzz as f1 #----START OF SCRIPT if __name__=='__main__': - fizzbuzz(100) \ No newline at end of file + f1.fizzbuzz(100) \ No newline at end of file