Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Daniil Malaletni #30

Open
wants to merge 11 commits into
base: master
Choose a base branch
from

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