from bacterial_growth import bacterial_growth result = bacterial_growth(100, 0.1, 1000) if result != 44: print('Test bacterial_growth(100, 0.1, 1000) returned', result, 'instead of 44') else: print("You got the correct result on the supplied example. Before handing in, you should test more cases.")