def create_sentence(first_word, second_word, third_word, fourth_word): sentence = str(first_word) + ' ' + str(second_word) + ' ' + str(third_word) + ' ' + str(fourth_word) return sentence if __name__ == '__main__': print(create_sentence("The", "car", "went", "fast"))