Вопрос задан 05.05.2019 в 15:59. Предмет Английский язык. Спрашивает Герасимова Мария.

Как переводиться? Match the verbs with nouns and write the code

0 0
Перейти к ответам

Ответы на вопрос

Внимание! Ответы на вопросы дают живые люди. Они могут содержать ошибочную информацию, заблуждения, а также ответы могут быть сгенерированы нейросетями. Будьте внимательны. Если вы уверены, что ответ неверный, нажмите кнопку "Пожаловаться" под ответом.
Отвечает Лузанова Мария.
Какие существительные к этим глаголам подставили бы вы и, самое главное, почему именно эти?
0 0
Отвечает нейросеть ChatGpt. Будьте внимательны, ответы нейросети могут содержать ошибочные или выдуманные данные.

To match verbs with nouns and write the code, you can use dictionaries in Python. Here's an example of how you can achieve this:

```python verbs = ["match", "write", "translate"] nouns = ["verbs", "code", "nouns"]

# Create a dictionary to match verbs with nouns verb_noun_dict = dict(zip(verbs, nouns))

# Print the matched pairs for verb, noun in verb_noun_dict.items(): print(f"{verb} the {noun}")

# Output: # match the verbs # write the code # translate the nouns ```

In this example, we have two lists, `verbs` and `nouns`, which contain the verbs and nouns respectively. We then create a dictionary `verb_noun_dict` using the `zip()` function, which zips the two lists together to create key-value pairs. Each verb is paired with its corresponding noun.

Finally, we iterate over the dictionary using the `items()` method and print out the matched pairs. The output will be:

``` match the verbs write the code translate the nouns ```

You can modify the `verbs` and `nouns` lists as per your requirements.

0 0

Топ вопросов за вчера в категории Английский язык

Последние заданные вопросы в категории Английский язык

Задать вопрос