-
Notifications
You must be signed in to change notification settings - Fork 28
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
base: master
Are you sure you want to change the base?
Daniil Malaletni #30
Conversation
final_task/pycalc.py
Outdated
:return: Result of calculation | ||
|
||
""" | ||
def parse(expression: str) -> list: |
There was a problem hiding this comment.
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]
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Понял, ознакомлюсь.
final_task/pycalc.py
Outdated
:return: Updated list. | ||
|
||
""" | ||
for _ in range(len(parse_list)): |
There was a problem hiding this comment.
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
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Исправил.
No description provided.