-
Notifications
You must be signed in to change notification settings - Fork 457
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
base: master
Are you sure you want to change the base?
Lesson03 #880
Conversation
Выполнил все. Но как я понял надо было для нового урока свою ветку создать в git? |
List_fruits2 = ['груша','ананас','персик','слива','абрикос'] | ||
fruits1 = set(List_fruits1) | ||
fruits2 = set(List_fruits2) | ||
print(list(fruits1.intersection(fruits2))) |
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.
можно, но в условии просят через генератор списка делать - не пренебрегайте генераторами, ими пользуются все, функциями типа intersection никто не пользуется
#Функция проверки на пересечения двух ферзей | ||
def ver(F1, F2): | ||
if F1["X"] == F2["X"]: | ||
return True |
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.
как же так, а если при этом F1["Y"] != F2["Y"] ?
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.
не, тут все ок)
print("Задание-1") | ||
print("Решение с помощью re") | ||
import re | ||
print(re.findall("[A-Z]*([a-z]+)[A-Z]*", line)) |
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.
можно просто r"[a-z]+"
Все выполнил, но 1е задание хард пришлось упростить - не хватало времени. Сделал вывод результата не в дробях а в десятичных дробях