Categories
- Pharmacy
-
Nursing
-
MBA
-
BBA
- U.P. State University
- Veer Bahadur Singh Purvanchal University, Jaunpur
- Chaudhary Charan Singh University, Meerut
- Dr. Bhimrao Ambedkar University, Agra
- Chhatrapati Shahu Ji Maharaj University, Kanpur
- Mahatma Jyotiba Phule Rohilkhand University, Bareilly
- Mahatma Gandhi Kashi Vidyapith, Varanasi
- Dr. Ram Manohar Lohia Avadh University, Ayodhya
- Deen Dayal Upadhyaya Gorakhpur University
- Prof. Rajendra Singh (Rajju Bhaiya) University, Prayagraj
-
BCA
- UP State Universities
- University of Pune
- I.K.Gujral Punjab Technical University (PTU)
- University of Rajasthan
- Rashtrasant Tukadoji Maharaj Nagpur University
- Uttar Pradesh NEP2020
- University of Rajasthan ,Jaipur (According to NEP-2020)
- BCCA (B. Com - Computer Science)
- Haryana
- West Bengal
- BBA (CA)
- PUNE BCA (Sci,Commerce)/B.Com (CA)
- Dr. A. P. J. Abdul Kalam Technical University, Lucknow ( AKTU )
- MCA
-
B Ed
- Lucknow University B.Ed Books
- Chaudhary Charan Singh University/Maa Shakambhari University, Saharanpur
- Dr Bhim Rao Ambedkar University, Agra
- Mahatma Gandhi Kashi Vidyapeeth, Varanasi
- Chhatrapati Shahu Ji Maharaj University
- Prof. Rajendra Singh (Rajju Bhaiya) University, Prayagraj (PRSU)
- Mahatma Jyotiba Phule Rohilkhand University(Mjpru), Bareilly
- Dr. Ram Manohar Lohia Avadh University, Ayodhya
- Bundelkhand University, Jhansi
- B.A,B.ed
- B.Sc, B.ed
- Deen Dayal Upadhyaya Gorakhpur University
- Veer Bahadur Purvanchal University (VBPU)
- Maharaja Suhel Dev State University ,Azamgarh (MSDSU)
- Raja Mahendra Pratap Singh State University, Aligarh (RMPSSU)
- Barkatullah Vishwavidyalaya (Bhopal)
- Jiwaji University (Gwalior)
- Vikram University (Ujjain)
- Dr. Harisingh Gour University (Sagar)
- Devi Ahilya Vishwavidyalaya (Indore)
- Rani Durgavati Vishwavidyalaya (Jabalpur)
- Awadhesh Pratap Singh University (Rewa)
- Maharaja Chhatrasal Bundelkhand University (Chhatarpur)
- D. EL. ED
- TET
-
B Com
-
B Sc
- B.Sc. U.P. State Universities Common Syllabus NEP
- Veer Bahadur Singh Purvanchal University, Jaunpur
- University of Lucknow
- Chaudhary Charan Singh University, Meerut
- Madhya Pradesh
- Chhatrapati Shahu Ji Maharaj University, Kanpur
- Dr. Bhimrao Ambedkar University, Agra
- Mahatma Gandhi Kashi Vidyapith, Varanasi
- DEEN DAYAL UPADHYAYA GORAKHPUR UNIVERSITY
- Prof. Rajendra Singh (Rajju Bhaiya) University, Prayagraj
- Dr. Ram Manohar Lohia Avadh University, Ayodhya
- Mahatma Jyotiba Phule Rohilkhand University, Bareilly
- Uttarakhand State Universities
- B.Sc. Bihar Universities Common Syllabus NEP
- University of Rajasthan (Jaipur)
- Haryana
-
Bachelor of Arts [B.A.]
- B.A. Of U.P. State Universities Common Syllabus NEP
- Veer Bahadur Singh Purvanchal University, Jaunpur
- University of Lucknow
- Chaudhary Charan Singh University, Meerut
- Chhatrapati Shahu Ji Maharaj University, Kanpur
- Dr. Bhimrao Ambedkar University, Agra
- Mahatma Gandhi Kashi Vidyapith, Varanasi
- Deen Dayal Upadhyaya Gorakhpur University
- Prof. Rajendra Singh (Rajju Bhaiya) University, Prayagraj
- Dr. Ram Manohar Lohia Avadh University, Ayodhya
- Mahatma Jyotiba Phule Rohilkhand University, Bareilly
- Madhya Pradesh
- Uttarakhand
- Bihar
- University of Rajasthan (Jaipur Syllabus as Per NEP2020)
- Haryana NEP-2020
- B Tech
- LLB
- SWA Education
PYTHON PROGRAMMING MAKAUT BCA THIRD SEM

AUTHORS: Dr. Atanu Das ,Mr. Rahul Shyam
ISBN : 978-93-6180-888-3
₹220.00
Tax excluded
AUTHORS: Dr. Atanu Das ,Mr. Rahul Shyam
ISBN : 978-93-6180-888-3
Syllabus
BCAC301: Python Programming
MODULE 1 Hours 3
Introduction: Features of Python, Execution of Python Program, Viewing the byte code, Python Virtual machine, Frozen binaries, Memory management of Python, Compare between C and Python, Compare between Java and Python.
MODULE 2 Hours 3
Python Fundaments: python character set, Tokens (Keywords, Identifiers, Literals, Operators, Punctuations), Comments in Python (Single line and Multi line), Variables and assignments (Creating a variables, Multiple assignments).
MODULE 3 Hours 6
Data Handling and Flow Control: Data Types, Mutable and Immutable types, Operators, Negative Number arithmetic in Python, Evaluation of Expression, Type casting, Flow Control: if statement, if..else, if..elif..else statement, range function, while loop, for loop, nested loop, break statement, Continue statement, return statement.
MODULE 4 Hours 5
String and Character: Introduction, Traversing the string, String concatenation and replication, Membership operator, comparison operator, determine unicode value of single character, slicing, built in functions (len(), capitalize(), count(), find(), index(),isalpha(), isalnum(), isdigit(), isspace(), islower(),lower(), upper(), strip(), lstrip(), rstrip(), join(), title(), split(), partition(), endswith(), startswith(), replace()
MODULE 5 Hours 4
Functions: Difference Function and method, define a function, Calling a function, Return results from function, Return multiple values from function, Formal and Actual arguments, Positional arguments, Default arguments, Keyword arguments, Variable length arguments Local and Global variable, Recursive function, using Lambdas with filter(), lambdas with map().
MODULE 6 Hours 6
Lists: Creation of list, empty list, nested list, use of list(), Accessing list, length of list, indexing and slicing of list, Traverse the list, Compare the list, Joining the list, Replication of list, Making the true copy of list, index(), append() and extend(), insert(), pop(), popitem(), del and clear(), count(), reverse(), sort and sorted, two dimensional list.
MODULE 7 Hours 3
Tuples: Creation of tuple (empty tuple, single element, create tuple from existing sequence, nested tuple), Accessing tuples, Traverse tuple, join , len(), max(), min().
MODULE 8 Hours 6
Dictionary: Creating dictionary empty dictionary, add key:value pair in dictionary, use of dict(), specify value pair separately in sequence, Add elements to dictionary, Check existence of a key in dictionary, get(), items(), keys(), values(), len(), fromkeys(), extens/ update dictionary with new value, making shallow copy of dictionary, delete elements from dictionary( clear (), pop(), popitem(), del() , max(), min(), sum().
MODULE 9 Hours 3
Text file: opening a text file, text file open modes (r, r+, w, w+, a, a+), closing a text file, opening a file using with clause, writing/appending data to a text file using write() and writelines(), reading from a text file using read(), readline() and readlines(), seek and tell methods, manipulation of data in a file.
MODULE 10 Hours 6
Class and Object: Features of OOPs Programming, Creation of class, self variable, Constructor, types of variable, namespace, types of methods(Instance method, class methods, static method) Inheritance: Constructor in inheritance, super(), Types of inheritance, Method of resolution order, Polymorphism, operator and method overloading, abstract class and interface.
MAKAUT2024/BCA/3/01
94 Items
New
16 other products in the same category:
Comments (0)
No customer reviews for the moment.
Your review appreciation cannot be sent
Report comment
Are you sure that you want to report this comment?
Report sent
Your report has been submitted and will be considered by a moderator.
Your report cannot be sent
Write your review
Review sent
Your comment has been submitted and will be available once approved by a moderator.
Your review cannot be sent
Customers who bought this product also bought:
Java Programming & Dynamic...
Price
₹270.00
ISBN - 978-93-89516-37-1
Author - Mr. Dheerendra Singh Yadav , Mr. Vikas Kumar
Java Programming
Price
₹125.00
Nayana R. Joshi, Vandana Pednekar & Rajesh Keshav Bade
ISBN-9789351635710