-
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
Lesson05 #884
base: master
Are you sure you want to change the base?
Lesson05 #884
Conversation
FullNameDir = os.path.join(current_path, "dir_"+str(i)) | ||
os.mkdir(FullNameDir) | ||
print("Директории dir_1..dir_2 созданы") | ||
except FileExistsError: |
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.
так, а если ошибка вылетит на первой же итерации, получиться что вообще ни одной папки не создастся
if os.path.isdir(FullNameDir): | ||
os.rmdir(FullNameDir) | ||
print("Директории dir_1..dir_2 удалены") | ||
except : |
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.
очень плохая практика, хотя бы Exception надо писать
@@ -13,3 +13,53 @@ | |||
# Для решения данной задачи используйте алгоритмы из задания easy, | |||
# оформленные в виде соответствующих функций, | |||
# и импортированные в данный файл из easy.py | |||
|
|||
import os | |||
def action1(): |
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.
функциям всеже лучше давать имена которые дают понмание что именно она делает
Сделал все.