Elective-I Python (BTCS 510-18) - Theory

Course Outcomes

After completing the course, students shall be able to:

  1. Examine Python syntax and semantics and be fluent in the use of Python flow control and functions.
  2. Demonstrate proficiency in handling Strings and File Systems.
  3. Create, run and manipulate Python Programs using core data structures like Lists, Dictionaries and use Regular Expressions.
  4. Interpret the concepts of Object-Oriented Programming as used in Python.
  5. Implement exemplary applications related to Network Programming, Web Services and Databases in Python.

Detailed Syllabus

Module 1

Python Objects, Standard Types, Other Built-in Types, Internal Types, Standard Type Operators, Standard Type Built-in Functions, Categorizing the Standard Types, Unsupported Types Numbers - Introduction to Numbers, Integers, Floating Point Real Numbers, Complex Numbers, Operators, Built-in Functions, Related Modules Sequences - Strings, Lists, and Tuples, Mapping and Set Types.

Module 2

FILES: File Objects, File Built-in Function [open()], File Built-in Methods, File Built-in Attributes, Standard Files, Command-line Arguments, File System, File Execution, Persistent Storage Modules, Related Modules. Exceptions: Exceptions in Python, Detecting and Handling Exceptions, Context Management, Exceptions as Strings, Raising Exceptions, Assertions, Standard Exceptions, Creating Exceptions, Why Exceptions (Now)?, Why Exceptions at All?, Exceptions and the sys Module, Related Modules. Modules: Modules and Files, Namespaces, Importing Modules, Importing Module Attributes, Module Built-in Functions, Packages, Other Features of Modules.

Module 3

Regular Expressions: Introduction, Special Symbols and Characters, Res and Python. Multithreaded Programming: Introduction, Threads and Processes, Python, Threads, and the Global Interpreter Lock, Thread Module, Threading Module, Related Modules.

Module 4

GUI Programming: Introduction, Tkinter and Python Programming, Brief Tour of Other GUIs, Related Modules. WEB Programming: Introduction, Wed Surfing with Python, Creating Simple Web Clients, Advanced Web Clients, CGI-Helping Servers Process Client Data, Building CGI Application Advanced CGI, Web (HTTP) Servers.

Module 5

Database Programming: Introduction, Python Database Application Programmer's Interface (DB-API), Object Relational Managers (ORMs), Related Modules.

Text Books


Elective-I Python Lab (BTCS 513-18)

List of Experiments

  1. Write a program to demonstrate different number data types in Python.
  2. Write a program to perform different Arithmetic Operations on numbers in Python.
  3. Write a program to create, concatenate and print a string and accessing sub-string from a given string.
  4. Write a python script to print the current date in the following format "Sun May 29 02:26:23 IST 2017"
  5. Write a program to create, append, and remove lists in python.
  6. Write a program to demonstrate working with tuples in python.
  7. Write a program to demonstrate working with dictionaries in python.
  8. Write a python program to find largest of three numbers.
  9. Write a Python program to convert temperatures to and from Celsius, Fahrenheit.
  10. Write a Python program to construct pattern using nested for loop.
  11. Write a Python script that prints prime numbers less than 20.
  12. Write a python program to find factorial of a number using Recursion.
  13. Write a program to implement Pythagorean theorem for right triangles.
  14. Write a python program to define a module to find Fibonacci Numbers and import the module to another program.
  15. Write a python program to define a module and import a specific function in that module to another program.
  16. Write a script for copying contents between text files.
  17. Write a program to print all unique words in a text file in alphabetical order.
  18. Write a Python class to convert an integer to a roman numeral.
  19. Write a Python class to implement pow(x, n)
  20. Write a Python class to reverse a string word by word.