Reverse a sentence based on words. The th word from the left in the input sentence is the th word from the end in the output sentence. Choose all options that accept a sentence as input and print the modified sentence.
Example:
```
sentence = "i know how to code in python"
modified_sentence = "python in code to how know i"
```