Notice: This page requires JavaScript to function properly.
Please enable JavaScript in your browser settings or update your browser.
Вивчайте Challenge: Organize Content Assets by Type | Automating Content Workflows
Practice
Projects
Quizzes & Challenges
Вікторини
Challenges
/
Python for Content Creators
Секція 1. Розділ 3
single

single

bookChallenge: Organize Content Assets by Type

Свайпніть щоб показати меню

Keeping your content assets organized is crucial for managing a growing library of images, videos, and documents. As a content creator, you often deal with dozens or even hundreds of files, and manually sorting them can be tedious and error-prone. Automating this organizational process with Python not only saves you time but also ensures your files are always in the right place, making them easier to find and use in future projects. By simulating the creation of subfolders and moving files into them based on their type, you can develop a workflow that mirrors best practices for digital asset management—without the risk of accidentally moving files during testing.

Завдання

Swipe to start coding

Write a function that simulates organizing a list of mixed content files into subfolders by file type.

  • Use the provided file_list parameter, which contains file names with extensions.
  • Identify the type of each file based on its extension: images (.jpg, .jpeg, .png, .gif, .bmp), videos (.mp4, .mov, .avi, .mkv), and documents (.pdf, .docx, .txt, .xlsx).
  • For each file, print a line simulating the creation of the corresponding folder if it has not already been created.
  • Print a line simulating moving the file to the appropriate folder.
  • If a file does not match any of the known types, simulate creating and moving it to an "others" folder.

Рішення

Switch to desktopПерейдіть на комп'ютер для реальної практикиПродовжуйте з того місця, де ви зупинились, використовуючи один з наведених нижче варіантів
Все було зрозуміло?

Як ми можемо покращити це?

Дякуємо за ваш відгук!

Секція 1. Розділ 3
single

single

Запитати АІ

expand

Запитати АІ

ChatGPT

Запитайте про що завгодно або спробуйте одне із запропонованих запитань, щоб почати наш чат

some-alt