0% found this document useful (0 votes)
13 views11 pages

Programming Paradigm Python Project Dissertation

This project explores the implementation of multiple programming paradigms in Python, focusing on Object-Oriented, Functional, Procedural, and Event-Driven paradigms. It aims to develop an Event-Driven Task Scheduler that integrates these paradigms using Tkinter for the GUI and emphasizes modularity and maintainability. The expected outcome is a clean and interactive application demonstrating the effective use of various programming styles.

Uploaded by

chandras13
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PPTX, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
13 views11 pages

Programming Paradigm Python Project Dissertation

This project explores the implementation of multiple programming paradigms in Python, focusing on Object-Oriented, Functional, Procedural, and Event-Driven paradigms. It aims to develop an Event-Driven Task Scheduler that integrates these paradigms using Tkinter for the GUI and emphasizes modularity and maintainability. The expected outcome is a clean and interactive application demonstrating the effective use of various programming styles.

Uploaded by

chandras13
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PPTX, PDF, TXT or read online on Scribd
You are on page 1/ 11

Python-Based Project: Programming

Paradigm Implementation
Introduction
• • A programming paradigm is a style or 'way'
of programming.
• • This project explores the implementation of
multiple paradigms using Python.
• • Focus: Object-Oriented, Functional,
Procedural, and Event-Driven paradigms.
Project Objectives
• • Understand and implement multiple
programming paradigms.
• • Develop a real-world Python application
combining different paradigms.
• • Emphasize modularity, reusability, and
maintainability.
Project Title
• Event-Driven Task Scheduler with Functional
Modules

• • Integrates event-driven programming with


functional design principles.
• • GUI implemented using Tkinter (event-
driven).
• • Task logic structured using functional
programming concepts.
Tools and Technologies
• • Python 3.x
• • Tkinter for GUI
• • JSON for data storage
• • Functional modules: functools, itertools
Methodology
• • Step 1: Design GUI using Tkinter.
• • Step 2: Define pure functions for task
operations.
• • Step 3: Use trigger functions and events to
link GUI and logic.
• • Step 4: Integrate object-oriented design for
extensibility.
Programming Paradigm Mapping
• • Procedural: Main control flow, data handling
functions.
• • Object-Oriented: GUI and task encapsulation
in classes.
• • Functional: Stateless operations on task
data.
• • Event-Driven: User interactions via GUI (e.g.,
button clicks).
Sample Code Structure
• • task_scheduler.py
• - Class: TaskManager
• - Functions: add_task(), delete_task(),
load_tasks()
• - GUI Events: bind() to buttons
Expected Outcomes
• • Efficient task scheduler with modular code.
• • Demonstration of multiple paradigms in one
application.
• • Enhanced understanding of paradigm-based
design.
Conclusion
• • Programming paradigms can be integrated
in practical projects.
• • Python supports multiple paradigms
effectively.
• • Event-driven + Functional + OOP = Clean and
interactive design.
References
• • Python Documentation
• • Tkinter GUI Programming by Example
• • Functional Python Programming – Packt
Publishing

You might also like