Skip to content

Conversation

@DaniilMaloletni
Copy link

No description provided.

@DaniilMaloletni DaniilMaloletni changed the title [WIP] Daniil Malaletni Daniil Malaletni May 12, 2019
:return: Result of calculation

"""
def parse(expression: str) -> list:
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Можешь для себя глянуть библиотеку typing. В ней есть List, Dict и т.д. С её помощью можно указать содержимое листа, к примеру. List[str], List[some_object]

Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Понял, ознакомлюсь.

:return: Updated list.

"""
for _ in range(len(parse_list)):
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

range(len(parse_list)) такая конструкция нежелательна. Если тебе нужно обойти этот список, ты мог бы использовать либо цикл while, либо for _ in parse_list

Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Исправил.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Projects

None yet

Development

Successfully merging this pull request may close these issues.

4 participants