In just example 1: Mojo is given an extra unneeded line: `from python import Python` Mojo is given an extra unneeded line: `py = Python.import_module("builtins")` Mojo is given an extra unneeded line: ``` print("Length of the last word:") print(count) ``` while python is benchmarked with only 1 print (which works exactly the same in mojo): ``` print("Length of the last word:", count) ```