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

Lesson03 #880

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

Conversation

AlexN-github
Copy link

Все выполнил, но 1е задание хард пришлось упростить - не хватало времени. Сделал вывод результата не в дробях а в десятичных дробях

@AlexN-github
Copy link
Author

Выполнил все. Но как я понял надо было для нового урока свою ветку создать в git?

List_fruits2 = ['груша','ананас','персик','слива','абрикос']
fruits1 = set(List_fruits1)
fruits2 = set(List_fruits2)
print(list(fruits1.intersection(fruits2)))

Choose a reason for hiding this comment

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

можно, но в условии просят через генератор списка делать - не пренебрегайте генераторами, ими пользуются все, функциями типа intersection никто не пользуется

#Функция проверки на пересечения двух ферзей
def ver(F1, F2):
if F1["X"] == F2["X"]:
return True

Choose a reason for hiding this comment

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

как же так, а если при этом F1["Y"] != F2["Y"] ?

Choose a reason for hiding this comment

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

не, тут все ок)

print("Задание-1")
print("Решение с помощью re")
import re
print(re.findall("[A-Z]*([a-z]+)[A-Z]*", line))

Choose a reason for hiding this comment

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

можно просто r"[a-z]+"

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants