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

Python tuple packing and unpacking - Python coding

Python tuple packing and unpacking python tuple can also be created without using a tuple() class or enclosing the items inside the parentheses. it is called the variable packing #python tuple packing into tuple tuple=23,44,66,'django' print(tuple) print(type(tuple)) #unpacking tuple into variable a,b,c,d=tuple print("a is =",a) print("b is =",b) print("c is =",c) print("d is =",d) print(type(a)) print(type(b)) print(type(c)) print(type(d)) output :  (23, 44, 66, 'django') <class 'tuple'> a is = 23 b is = 44 c is = 66 d is = django <class 'int'> <class 'int'> <class 'int'> <class 'str'>

Python tuples - tuple datatype in python

Python tuples - tuple datatype in python   python tuples are ordered it can store variables of all types that are unchangeable creating tuple in two ways using parenthesis() A tuple is created by enclosing comma separated elements inside rounded brackets. python tuple characteristics:     Ordered : tuples are part of sequence data types     Unchangeable : tuple are unchangeble, we cannot add or delete element     Heterogeneous : means different datatypes Create a tuple using the two ways: #Using parenthesis () tuple=(56,77,88,78,23) print(tuple) print(type(tuple)) output : (56,77,88,78,23) #Using a tuple() constructor x=tuple((56,88,99,34.77,83)) print(x) print(type(x)) output: ((56,88,99,34.77,83)) #Heterogeneous  type tuple elements and nested tuple sampletuple = ('ram',44,45.65,[23,25, 78]) print(sampletuple) output:  ('ram',44,45.65,[23,25, 78])

remove specific element in python list - remove index based element

  #remove specific element in python list list=list([34,55,34,66,77,45.6,23,34,]) print(list) list.remove(66) print(list) output: [34, 55, 34, 66, 77, 45.6, 23, 34] [34, 55, 34, 77, 45.6, 23, 34] #Remove all occurrence of a specific python repeated element mylist = list([26, 4, 26, 26, 8, 12]) for item in mylist:     mylist.remove(26) print(mylist) output :  [4,8,12] #remove item present at given index mylist = list([2, 4, 6, 8, 10, 12]) mylist.pop(2)  #remove 2 index based element print(mylist) output:  [2, 4, 8, 10, 12] # remove item without passing index number(last value remove) using pop() mylist = list([2, 4, 6, 8, 10, 12]) mylist.pop()   print(mylist) output : [2, 4, 6, 8, 10] [2, 4, 8, 10] #remove the range of elements python list with slice: mylist = list([2, 4, 6, 8, 10, 12]) #remove item from index 2 to 5 del mylist[2:5] print(mylist) output: [2, 4, 12] #remove all items starting from index 2 mylist=list([23,44,55,34,53,78,55]) del myl...