Skip to main content

Python Core and Advance Training

Python Core and Advances Training Concepts

Python is a General purpose and High Level  programming language. It was created by Guido van Rossum, and released in 1991.

Python Present Version is: Python 3.11.4

1) Introduction to Python 
2) How to Install Python 
3)  How to Execute Python
4) Variables Declaration in Python 
5) Keywords in Python 
6) Data Types or Literals in Python
7) Operators in Python 
        Arithmetic Operators,Relational Operators,Assignment Operators,Logical                   Operators,Membership ,Operators,Identity Operators,Bitwise Operators
8) Comments in Python 
        Single Line Comments,Multiline Comments
9) Control Statements in Python 
10 )Strings in Python 
        Accessing Values in Strings,String Special Operators,Built in String Methods
11) Lists in Python 
        List Operations,Other Operations,Methods of Lists
12) Tuples in Python 
13) Dictionary in Python 
         Accessing Values,Updating,Deleting,Dictionary Methods
14) Functions in Python 
Types of Functions,Defining a Function,Invoking Function,Anonymous Functions,Function Arguments,i.

Required Arguments,Keyword Arguments,Default Arguments,Variable Length Arguments
15) Scope of Variables 
         Global Variables, Local Variables
16) Python Modules 
Importing Modules,Locating Modules,Builten Modules in Python 
17) Packages in Python
18) Python File Handling 
Operations on Files,Opening a Files,Closing a Files,Writing a Files,Reading a Files
Types of Files,Text Files,Binary Files,Modes of File
19) Exceptions Handing 
 Pre-Defined Exception Class,Except with no Exception,Multiple Exceptions,Raise on Exception
20) Python Date and Time 
Time Module Function,Time Module Attributes,Importing Time Module
          
21) Introduction to OPPS
Class
Object
Inheritance
Encapsulation
Data Abstraction
         Class Attributes in Python
22)      Constructor
         Creating a Constructor
23) Destructor
25) Class Inheritance
  Single Inheritance,Multiple Inheritances,Multilevel Inheritance 
26) Polymorphism
27) Encapsulation
28) Abstraction
29) Data Hiding
30) Regular Expressions
Match,Search and Replace,Regular Expression Patterns
31) Python Database Access
DB-API,PyMysql,Install PyMysql,Connecting Database,Inserting and Selecting Into the From
Updating and Deleting 
32) CGI Programming
CGI Architechre,Http Header,CGI Environment Variables,Passing Information Using GET and    

         POST Methods
33) Networking-Socket Programming
         What is Sockets?,Client Server Communication using Sockets,Socket Module
Server Socket Methods,Client Socket Methods
34) Python Sending Email Using SMTP
Import smtplib,Mail Function

35) Multithread Programming-Multithreading Modules
36) XML Parser in Python - What is XML,XML Parser,DOM,Parsing XML with DOM APIs
37) Graphical User Interface
Tkinter Toolkit, WxPython Toolkit, Widgets,Important Buttons and Fields
Standard Attributes
GUI in Button,Checkbox,labels,Radiobuttons etc..
GUI in Text,Listbox,Menu,Menubutton
GUI in Frame,Lable Frame,Panedwindow,Spinbox,Scale,Scrollbar
38) Python Drawings 
Convas,Lines,Poygon,Oval(Circle),Lines and Rectangles,Oval and Painting
39) Python Using Message and Dialog Boxes        
40) ML Liberies
         Numpy,pandas,scipy,Matplotlib,Opencv,TensorFlow.
41) Django  (html,css,javascript)    










 

Comments

Popular posts from this blog

Software Jobs - Web Developer jobs in Andhra Pradesh, Rajahmundry,

Software Jobs - Web Developer jobs in Andhra Pradesh, Rajahmundry,  Openings: Web Developer  Qualification: BE,Btech,MCA,MSC Experience: 1-5 years Requirements: Should have good experience as a PHP Application developer Hands on Experience in developing the application using MVC architecture. Good to have knowledge in MySQL, Codeignitor, Zend, CakePHP, Joomla, Magneto and Laravel is a plus. Have experience with REST API, JSON, and SOAP. Expertise in HTML5, CSS, Bootstrap, jQuery, Ajax. Experience in taking ownership of product delivery, code quality and architecture. Should be proactive, goal-oriented, reliable and a have a self-structured way of working. Responsibilities: Creating website layout/user interfaces by using standard HTML/CSS practices. Designing well organized databases. Integrating data from various back-end services and databases Be involved in al...

Adding and changing elements in a tuple using insert() and append methods

  Adding and changing elements in a tuple using insert and append: A list is a mutable type, which means we can add or modify values in it, but tuples are immutable, so they cannot be changed. #how to add new element in tuple object using index based tup=(6,75,66,34,23) print(tup) #print all tuple elements newlist=list(tup) #tuple to list convert newlist.insert(2,40) #add new element in list tup=tuple(newlist) #convert list to tuple print(tup) #print all elements in tuple output: (6, 75, 66, 34, 23) (6, 75, 40, 66, 34, 23) #how to add new element in tuple object using apped() method tup=(6,75,66,34,23) newlist=list(tup) newlist.append(22) tup=tuple(newlist) print(tup) output: (6, 75, 66, 34, 23, 22) #Modify nested items of a tuple: then we can change its values in the case of a nested tuple. Ex: tuple1 = (10, 20, [25, 75, 85]) print(tuple1) tuple1[2][0] = 250 print(tuple1) output: (10,20,[250,75,85])      #python tuples, #python training in guntur, #python jobs in gu...

Python Complex Datatypes

Python Complex Datatypes    A complex number is a number with a real and an imaginary component represented as a+bj where a and b contain integers or floating-point values. # both values are int type a = 9 + 8j           print(a)      print(type(a)) # one int and one float values b = 10 + 4.5j        print(b)       print(type(b)) # both values are float type c = 11.2 + 1.2j      print(c) print(type(c))