Python programming -COURSE OUTLINE

Download as pdf or txt
Download as pdf or txt
You are on page 1of 3

Python Programming Beginners Course

COURSE OUTLINE

This section is about fundamental programming topics and basic building blocks of the
language. Python is a language with a simple syntax, and a powerful set of libraries. It is
an interpreted language, with a rich programming environment, including a robust
debugger and profiler. While it is easy for beginners to learn, it is widely used in many
scientific areas for data exploration. This course is an introduction to the Python
programming language for students without prior programming experience. We cover
data types, control flow, object-oriented programming, and graphical user interface-
driven applications. The examples and problems used in this course are drawn from
diverse areas such as text processing, simple graphics creation and image manipulation,
HTML and web programming, and genomics.

METHOD: This course will include online learning, audio, video ,text, assigned
readings, class discussions and case studies

COURSE WEIGNING: The continuous assessment will include for works, quizzes, a
test, a case study.

FINAL EXAM: After completing the final exam and all online classes the user is issued
a certificate of completion.

OUTLINE

I. NTRODUCTION

II. VARIABLES
1. signed integers
2. long integers
3. floating point real values
4. complex numbers
5. Quiz

wditinstitute.com
III. BASIC DATA STRUCTURES
1. Lists
2. Sets
3. Tuples
4. Dictionaries
5. Quiz

IV. MATHS OPERATIONS


1. Addition
2. Subtraction
3. Division
4. Modulus
5. Exponentiation
6. Floor division
7. Quiz

V. CONDITIONS
1. Introduction to the If statement
2. The If and Elif clauses
3. Pass statement
4. Conditional Expressions (Python’s Ternary Operator)
5. Quiz

VI. CONTROL FLOW


1. Sequential
2. Selection
3. Repetition

VII. LOOPS AND ITERABLES


1. While loop
2. For loop
3. Nested loops

VIII. FUNCTIONS
1. Python Function with no argument and no return value
2. Function with no argument and with a Return value.
3. Python Function with argument and No Return value.
4. Python Function with argument and No Return value.

IX. SOME BUILT IN METHODS


1. print( ) function
2. type( ) function
3. input( ) function
4. abs( ) function

wditinstitute.com
5. pow( ) function
6. dir( ) function
7. sorted( ) function
8. max( ) function
9. round( ) function
10. divmod( ) function
11. id( ) function
12. ord( ) function
13. len( ) function
14. sum( ) function
15. help( ) function

X. USER INPUT AND BUILDING A FILE

1. Input function
2. Displaying input in python
3. How to Create Text File, Read, Write, Open
4. Quiz

XI. Final examination


XII. Certificate

wditinstitute.com

You might also like