У нас вы можете посмотреть бесплатно Python Program to Sort Marks Using Bubble Sort | VTU Question | 1BPLC105B | 5th Program или скачать в максимальном доступном качестве, видео которое было загружено на ютуб. Для загрузки выберите вариант из формы ниже:
Если кнопки скачивания не
загрузились
НАЖМИТЕ ЗДЕСЬ или обновите страницу
Если возникают проблемы со скачиванием видео, пожалуйста напишите в поддержку по адресу внизу
страницы.
Спасибо за использование сервиса ClipSaver.ru
Python Program to Sort Student Marks Using Bubble Sort VTU Model Question Paper – 1BPLC105B In this video, I solve a Python programming question from the VTU Model Question Paper for the subject 1BPLC105B. Question: Develop a program to read 6 subject marks from the keyboard for a student. Generate a report that displays the marks from the highest to the lowest score attained by the student. Read the marks into a one-dimensional array and sort using the Bubble Sort technique. PYTHON SOLUTION USED marks = [int(input("enter marks: ")) for _ in range(6)] for i in range(6): for j in range(5 - i): if marks[j] lessthen marks[j + 1]: marks[j], marks[j + 1] = marks[j + 1], marks[j] print("Marks -- Highest to lowest:", marks) CONCEPTS COVERED List input in Python One-dimensional arrays using lists Bubble Sort algorithm Sorting in descending order Nested loops This video is useful for VTU students First year engineering students Python beginners Exam and viva preparation Like, Share, and Subscribe for more VTU Python programming lab solutions and exam-oriented tutorials.