Open navigation menu
Close suggestions
Search
Search
en
Change Language
Upload
Sign in
Sign in
Download free for days
0 ratings
0% found this document useful (0 votes)
33 views
Summer Training Report On Python PDF
Uploaded by
Ghazi Burybury
AI-enhanced title
Copyright
© © All Rights Reserved
Available Formats
Download as PDF or read online on Scribd
Download now
Download
Save Summer Training Report On Python.pdf For Later
Download
Save
Save Summer Training Report On Python.pdf For Later
0%
0% found this document useful, undefined
0%
, undefined
Embed
Share
Print
Report
0 ratings
0% found this document useful (0 votes)
33 views
Summer Training Report On Python PDF
Uploaded by
Ghazi Burybury
AI-enhanced title
Copyright
© © All Rights Reserved
Available Formats
Download as PDF or read online on Scribd
Download now
Download
Save Summer Training Report On Python.pdf For Later
Carousel Previous
Carousel Next
Save
Save Summer Training Report On Python.pdf For Later
0%
0% found this document useful, undefined
0%
, undefined
Embed
Share
Print
Report
Download now
Download
You are on page 1
/ 20
Search
Fullscreen
A Summer Training Report On Python and it’s Libraries Under the Guidance of Mr. Anand Handa Sir(IITK) Done By SHUBHAM YADAV (1573613037) At IQRA Software Technologies Private Limited Sharda Nagar ,Kanpur Nagar,U.P. Submitted To 2s. ot P< Department of Information Technology Rajkiya Engineering College , Azamgarh Approved By AICTE, New Delhi & Govt. of U.P., Affiliated to AKTU, LUCKNOW Vill- Akbalpur, Post Devgaon, Azamgarh, Uttar Pradesh 276201REPORT CONTENT “+ Introduction of Industry “History of Python * Why Python ? “+ Characteristics of Python + Data Structures in Python + File Handling in Python “+ Use of Numpy + Use of Matplotlib “* Use of Pandas “+ Use of OpenCV “ ConclusionIntroduction of Industry IQRA Software Technologies, is a premier institute which provides IT and software skills training in Scientific & Engineering field with best quality at lower costs. We are one of the fastest growing software solution, technical consultancy and knowledge outsourcing company situated in India with offices at Bangalore, Kanpur and Lucknow. Mission IQRA Software is committed to its role in technical training individuals or corporate in areas of Speech Compression, Image Processing, Control System, Wireless LAN, VHDL, Verilog, MATLAB (SciLab), DSP TMS320C67xx, Java, Microsoft.Net, Software Quality Testing, SDLC & Implementation, Project Management, Manual Testing, Silk Test, Mercury Test, QTP, Test Director for Quality Center. Vision DSP, VLSI, Embedded and Software testing are one of the fastest growing areas in IT across the globe. Our vision is to create a platform, where trainees/students are able to learn different features of technologies to secure a better position in IT industry or to improve their careers.History of Python Python was developed in 1980 by Guido van Rossum at the National Research Institute for Mathematics and Computer Science in the Netherlands as a successor of ABC language capable of exception handling and interfacing. Python features a dynamic type system and automatic memory management. It supports multiple programming paradigms, including object-oriented, imperative, functional and procedural, and has a large and comprehensive standard library. Van Rossum picked the name Python for the new language from a TV show, Monty Python's Flying Circus. In December 1989 the creator developed the 1st python interpreter as a hobby and then on 16 October 2000, Python 2.0 was released with many new features. ..[n December 1989, | was looking for a "hobby" programming project that would keep me occupied during the week around Christmas. My office ... would be closed, but | had a home computer, and not much else on my hands. | decided to write an interpreter for the new scripting language | had been thinking about lately: a descendant of ABC that would appeal to Unix/C hackers. | chose Python as a working title for the project, being in a slightly irreverent mood (and a big fan of Monty Python's Flying Circus) — Guido van RossumPython Releases + Python 1.0 - January 1994 + Python 1.5 - December 31, 1997 + Python 1.6 - September 5, 2000 “+ Python 2.0 - October 16, 2000 + Python 2.1 - April 17, 2001 “+ Python 2.2 - December 21, 2001 + Python 2.3 - July 29, 2003 * Python 2.4 - November 30, 2004 + Python 2.5 - September 19, 2006 + Python 2.6 - October 1, 2008 “+ Python 2.7 - July 3, 2010 + Python 3.0 - December 3, 2008 + Python 3.1 - June 27, 2009 + Python 3.2 - February 20, 2011 “% Python 3.3 - September 29, 2012 + Python 3.4 - March 16, 2014 “% Python 3.5 - September 13, 2015 + Python 3.6 - December 23, 2016Why Python ? The language's core philosophy is summarized in the document The Zen of Python (PEP 20), which includes aphorisms such as... + Beautiful is better than ugly + Simple is better than complex + Complex is better than complicated + Readability counts + Explicit is better than implicit Asimple Program to print "Hello World” EVE meCle (3 Python Code public class HelloWorld print (“Hello World!”) public static void main(String args [] ) { System. out.printin ("Hello World!”) } }Characteristics of Python Interpreted Language: Python is processed at runtime by Python Interpreter compile output source code execut Hello.java G (ea Hello,java Hello.dass byte code Hello.c lass Hello.py * Easy to read: Python source-code is clearly defined and visible to the eyes. + Portable: Python codes can be run on a wide variety of hardware platforms having the same interface. + Extendable: Users can add low level-modules to Python interpreter. * Scalable: Python provides an improved structure for supporting large programs than shell-scripts. * Object-Oriented Language: It supports object-oriented features and techniques of programming.* Interactive Programming Language: Users can interact with the python interpreter directly for writing programs. + Easy language: Python is easy to learn language especially for beginners. * Straight forward Syntax: The formation of python syntax is simple and straightforward which also makes it popular. Data Structures in Python LISTS- * Ordered collection of data. © Supports similar slicing and indexing functionalities as in the case of Strings. * They are mutable. © Advantage of a list over a conventional array + Lists have no size or type constraints(no setting restrictions beforehand). + They can contain different object types. + We can delete elements from a list by using Del list_namefindex_val] © Example- + my_list = ['one’, 'two!,'three',4,5] + len(my_list) would output 5. Dictionary- ‘Lists are sequences but the dictionaries are mappings. © They are mappings between a unique key and a value pair. ‘© These mappings may not retain order. © Constructing a dictionary. * Accessing object from a dictionary. © Nesting Dictionaries. * Basic Dictionary Methods.© Basic Syntax o d={} empty dictionary will be generated and assign keys and values to it, like d[’animal’] = ‘Dog’ o d={'K1''V1', 'K2":'V2'} © d['K1'] outputs 'V1 Tuples- ‘* Immutable in nature, i.e they cannot be changed. © No type restriction © Indexing and slicing, everything's same like that in strings and lists. © Constructing tuples. * Basic tuple methods. © Immutability. © When to use tuples? ‘* We can use tuples to present things that shouldn't change, such as days of the week, or dates on a calendar, etc. Sets- * Asset contains unique and unordered elements and we can construct them by using a set() function. * Convert a list into Set- © 1>(1,2,3,4,1,1,2,3,6,7] * k=set(l) © k becomes {1,2,3,4,6,7} © Basic Syntax- © xzset() © xadd(1) © x= {1} © xadd(1) © This would make no change in x nowle Handling in Python- Python too supports file handling and allows users to handle files i.e., to read and write files, along with many other file handling options, to operate on files. The concept of file handling has stretched over various other languages, but the implementation is either complicated or lengthy, but alike other concepts of Python, this concept here is also easy and short. Python treats file differently as text or binary and this is important. Each line of code includes a sequence of characters and they form text file. Each line ofa file is terminated with a special character, called the EOL or End of Line characters like comma {,} or newline character. It ends the current line and tells the interpreter a new one has begun. Let's start with Reading and Writing files. We use open () function in Python to open a file in read or write mode. As explained above, open ( ) will return a file object. To return a file object we use open () function along with two arguments, that accepts file name and the mode, whether to read or write. So, the syntax being: open(filename, mode). There are three kinds of mode, that Python provides and how files can be opened: + "r" for reading. “w" for writing, + “a“, for appending. + "re", for both reading and writing Ex-It is a notepad file (101.txt) (Bh 101 - Notepaa - o x File Edit Format View Help america , world most powerful country and also have a powerful economy. But President of Usa is 3rd powerful person in the world today 26/10/2016. mericans are perfect about their workCode in python dic-{} words=[] with open("101.txt")as fi: for line in f1: words -words+line.split() for 1 in range(len(words)): count for j in range(len(words) if words[i]=-words[j count-count +1 dic(words[i]]-count for count in dic: print(counts" “sstr(dic{count])) f4-open("105.txt”,"a+") 4.writelines(count+” “+str(dic[count])) It read the words from 101.txt file and print the all words which are present in the file and also tell that word occurring howmany times. america 1 cia world 2 most 2 powerful 3 country 2 and 1 also 4 have 2 aa economy. But 1 President 1 ofa Usa 2 isa Brd a person 2 ina the 1 today 1 26/10/2016. 4 americans 1 area perfect 2 about 1 their 1 work 2Use of Numpy- NumPy is a Python package. It stands for ‘Numerical Python’. It is a library consisting of multidimensional array objects and a collection of routines for processing of array. Numeric, the ancestor of NumPy, was developed by Jim Hugunin. Another package Numarray was also developed, having some additional functionalities. In 2005, Travis Oliphant created NumPy package by incorporating the features of Numarray into Numeric package. There are many contributors to this open source project. Operations using NumPy Using NumpPy, a developer can perform the following operations — = Mathematical and logical operations on arrays. «Fourier transforms and routines for shape manipulation. = Operations related to linear algebra. NumPy has in-built functions for linear algebra and random number generation. Simple program to create a matrix- First of all we import numpy package then using this we take input in numpy function as a list then we create a matrix import numpy as np benp.array([[1,6,5,2,3,45]]) b.shape=(3,2) print(b) (1 6] [s 2] (3 45]) There is many more function can be perform by using this like that take sin value of the given value ,print a zero matrix etc. we also take any image in the form of array.J: 2 = np.zeres((8,8) .dtype-int) print (2) [[eee0eceee) feeececoee’ [ecceeceeo; [eeeeeooe feeeeeeooe) [eeeeceece)] [eeeececoe: feeeeecoe)} 1: import numpy as np 2 np.array([6, 28,45,68,90}) print (‘Sine of different angles:" ) # Convert to radions by multiplying with pi/1so print (np-sin(a*np-pi/1s@) > print ¢*\n") print (‘Cosine values for angles in array: print (np.cos(a*np-pi/1s@) ) print ("\n") Sine of different angle: te. es @.7e710678 62660254 1 1 Cosine values for angles in array: [1-eeeeceeee+oe 8.5602540de-01 7.07106781e-01 5.e00e0eee-e1 '6.12323400e-17] Use of Matplotlib- Matplotlib is a library for making 2D plots of arrays in Python. Although it has its origins in emulating the MATLAB graphics commands, it is independent of MATLAB, and can be used in a Pythonic, object oriented way. Although Matplotlib is written primarily in pure Python, it makes heavy use of NumPy and other extension code to provide good performance even for large arrays. Matplotlib is designed with the philosophy that you should be able to create simple plots with just a few commands, or just one! If you want to see a histogram of your data, you shouldn't need to instantiate objects, call methods, set properties, and so on; it should just work. These are the some example of matplotlib..Inport metp tot tb os wp SeatplotLib inline lees it-sopcieie pies ane at plotting") aK: {Labels 'pleying!sLinewidthes) £, sleeping, eating, working, playing,colors-('m'"¢"s°r's°°D plesahewt)ze [28] 0 [36] daye-[1,2,3,4,5] slteoing-t7-a2¢-32.71 +, colors-col, startangle-s0, 4,0,0),autopet- "A178" ) plt-title(‘pie plot’) plesshow() pie plot import datetine as OT From matplotlib Inport pyplot as plt from matplotlib.dates import dateZnum ddata-[(OT.datetine.strptine( ‘16-10-03 "),772.559996), (OT-datetine.strptine( ‘16-10-08 1"), 775.559998), (OT-datetine.strptine( ‘16-10-05; "),778.539998), (O-datetine.strptine( 16-10-06: "),771.559998), (OT.datetine.strptine( 16-10-07 ),778.559998)} x=[dateznun(date) for (dete,velue) in dato) y-[value for (date,value) in deta] Hg-plt-figure() igroph=Fig-0de_subplot(111) {Ereph.plot(x,y, 'e-0") graph. set_xticks() raph. set_xticklabels([date.strftine("Xy-Ra-Rd") for (dste,value) in deta]) plt.xdabel("values") plt.ylabel('dates") plt.grid(Linestyle-"-',linewideh= ple. show() seolor='blue") ™ m wsib03 weibor —ieibos —ieibae e607Use of Pandas- Pandas is an open-source, BSD-licensed Python library providing high- performance, easy-to-use data structures and data analysis tools for the Python programming language. Python with Pandas is used in a wide range of fields including academic and commercial domains including finance, economics, Statistics, analytics, etc. Pandas is an open-source Python Library providing high-performance data manipulation and analysis tool using its powerful data structures. The name Pandas is derived from the word Panel Data — an Econometrics from Multidimensional data. Key Features of Pandas- + Fast and efficient DataFrame object with default and customized indexing. + Tools for loading data into in-memory data objects from different file formats. + Data alignment and integrated handling of missing data. + Reshaping and pivoting of date sets + Label-based slicing, indexing and subsetting of large data sets. + Columns from a data structure can be deleted or inserted. + Group by data for aggregation and transformations. Pandas deals with the following three data structures — + Series + DataFrame + Panel These data structures are built on top of Numpy array, which means they are fast.In [2]: | import pandas as pd In [2]: | df-pd.Oatarrame() print(ar) empty Dstarrame foes ED Endext (3 In [3]: | data=[1,2,3.4,5,6] Gf-pasDatarreme (date) print(ar) zn [4] ze [7]: :[20,22,131) prine(ae) oe 78S Sie 3 2 ef a3 Use of OpenCv- OpenCVv was started at Intel in 1999 by Gary Bradsky and the first release came out in 2000, Vadim Pisarevsky joined Gary Bradsky to manage Intel’s Russian software OpenCV team. In 2005, OpenCV was used on Stanley, the vehicle who won 2005 DARPA Grand Challenge. Later its active development continued under the support of Willow Garage, with Gary Bradsky and Vadim Pisarevsky leading the project. Right now, OpenCV supports a lot of algorithms related to Computer Vision and Machine Learning and it is expanding day-by-day. Below is the list of contributors who submitted tutorials to OpenCV-Python. -Alexander Mordvintsev (GSoC-2013 mentor) -Abid Rahman K. (GSoC-2013 intern)Use the function- cv2.imread() to read an image. The image should be in the working directory or a full path of image should be given. Second argument is a flag which specifies the way image should be read. + ev2.IMREAD_COLOR : Loads a color image. Any transparency of image will be neglected. It is the default flag. + cv2.IMREAD_GRAYSCALE : Loads image in grayscale mode * cv2.IMREAD_UNCHANGED : Loads image as such including alpha channel Use the function cv2.imshow/) to display an image in a window. The window automatically fits to the image size. in [2]: | import ev2 In [6]: | imgeev2.imread ("modi png") In [*]: | ev2-namediiindow( image" ,cv2.WINDOH_AUTOSIZE) v2. imshou( 'imoge' , img) cv2.waitkey (2) cv2.destroyAllWindows ("image") This program change image from colour to black&white.Trackbar as the Color Palette- Code- 2 ef enptyFunc pass. ef n3in() ing3enp.zeros((512,512,3),np.uints) reindowiones(‘shubhon yaday v2. nanedvindow(windowiane) eva. createTrackoar('' incowtiane, 0,255, enptyFunct ion ‘ev2.createrrackbar( 's" windowane,0, 255 empty Funct ion) (v2. createTrackbar("" windoxtane, 0,255, enptyPunction) siile(True) (2. {shou (windowuane, tng3) AF cya.wattKey(1)==2 break blue-cv2. getTrackbarPos('e (reen-cv2.getTrackbarPos( ed-cv2.gettrackbarros( R* indowiane) ings{:]-folue,green,red) rint(blue,green,red) cv2.destroyal tnaows() print eain( seingowiane) incousiane) Result- It works on BGR colour system.Conclusion- | believe the trial has shown conclusively that it is both possible and desirable to use Python as the principal teaching language: + Itis Free (as in both cost and source code). * Itis trivial to install on a Windows PC allowing students to take their interest further. For many the hurdle of installing a Pascal or C compiler on a Windows machine is either too expensive or too complicated; + Itis a flexible tool that allows both the teaching of traditional procedural programming and modern OOP. + Itcan be used to teach a large number of transferable skills. + [tis a real-world programming language that can be and is used in academia and the commercial world * It appears to be quicker to learn and, in combination with its many libraries, this offers the possibility of more rapid student development allowing the course to be made more challenging and varied. + and most importantly, its clean syntax offers increased understanding and enjoyment for students. The training program having three destination was a lot more useful than staying at one place throughout the whole 4 weeks. in my opinion. | have gained lots of knowledge and experience needed to be successful in great engineering challenge as in my opinion, Engineering is after all a Challenge ,and not a job
You might also like
OReilly Learning Python 4th Edition Oct 2009
PDF
100% (19)
OReilly Learning Python 4th Edition Oct 2009
1,214 pages
Mastering Python For Artificial Intelligence B0CB4BRQHJ
PDF
100% (1)
Mastering Python For Artificial Intelligence B0CB4BRQHJ
276 pages
Python - 1 Year - Unit-1
PDF
No ratings yet
Python - 1 Year - Unit-1
95 pages
Python Report
PDF
100% (1)
Python Report
20 pages
A Summer Training Report On Python and It's Libraries Under The Guidance of
PDF
No ratings yet
A Summer Training Report On Python and It's Libraries Under The Guidance of
20 pages
Industrial Visit Report
PDF
No ratings yet
Industrial Visit Report
23 pages
Project Report
PDF
0% (2)
Project Report
17 pages
Window 10 Activation
PDF
No ratings yet
Window 10 Activation
25 pages
Pt. L R Group of Institutions Faridabad Delhi NCR
PDF
No ratings yet
Pt. L R Group of Institutions Faridabad Delhi NCR
21 pages
INternship Report
PDF
No ratings yet
INternship Report
22 pages
Py
PDF
No ratings yet
Py
19 pages
industrial-training-report-on-python-new_compress (AutoRecovered)
PDF
No ratings yet
industrial-training-report-on-python-new_compress (AutoRecovered)
33 pages
A Summer Trainning Report
PDF
No ratings yet
A Summer Trainning Report
18 pages
Data Science2
PDF
No ratings yet
Data Science2
78 pages
BCA3RDPYTHON (2)
PDF
No ratings yet
BCA3RDPYTHON (2)
94 pages
Unit 3
PDF
No ratings yet
Unit 3
173 pages
?python For Data Analysis Cheatsheet
PDF
100% (3)
?python For Data Analysis Cheatsheet
128 pages
Python Notes
PDF
No ratings yet
Python Notes
29 pages
PROGRAMMING IN PYTHON I Unit
PDF
No ratings yet
PROGRAMMING IN PYTHON I Unit
52 pages
Unit 1 Introduction
PDF
No ratings yet
Unit 1 Introduction
219 pages
python1
PDF
No ratings yet
python1
49 pages
Python: By: Deepak Malusare
PDF
No ratings yet
Python: By: Deepak Malusare
43 pages
Python 45
PDF
No ratings yet
Python 45
41 pages
Python UNIT 2
PDF
No ratings yet
Python UNIT 2
31 pages
Python Notes 2022
PDF
100% (1)
Python Notes 2022
155 pages
Python Notes
PDF
No ratings yet
Python Notes
23 pages
PYTHON Full Notes
PDF
No ratings yet
PYTHON Full Notes
241 pages
Python SDFSD
PDF
No ratings yet
Python SDFSD
453 pages
Unit 2 Ge3151 PSPP New
PDF
No ratings yet
Unit 2 Ge3151 PSPP New
25 pages
Python Language: Introdction
PDF
No ratings yet
Python Language: Introdction
66 pages
PYT
PDF
No ratings yet
PYT
158 pages
Python Report
PDF
No ratings yet
Python Report
34 pages
Python Intro
PDF
No ratings yet
Python Intro
80 pages
Python
PDF
100% (1)
Python
15 pages
Week 1 Introduction To Python
PDF
No ratings yet
Week 1 Introduction To Python
53 pages
U2 of python
PDF
No ratings yet
U2 of python
71 pages
Python Tutorial
PDF
No ratings yet
Python Tutorial
52 pages
Phython Reviewer Python
PDF
No ratings yet
Phython Reviewer Python
15 pages
Python Tutorial
PDF
No ratings yet
Python Tutorial
181 pages
PSPPUT1 (1)
PDF
No ratings yet
PSPPUT1 (1)
23 pages
heena
PDF
No ratings yet
heena
25 pages
ToolsTutorial1999 Python COM Tutorial
PDF
No ratings yet
ToolsTutorial1999 Python COM Tutorial
91 pages
Final Project Report
PDF
No ratings yet
Final Project Report
29 pages
Unit - I
PDF
No ratings yet
Unit - I
73 pages
ML Lab File
PDF
No ratings yet
ML Lab File
53 pages
Python Programming Basics - Part 1
PDF
No ratings yet
Python Programming Basics - Part 1
9 pages
Python Lectures
PDF
No ratings yet
Python Lectures
125 pages
Python Study Material
PDF
No ratings yet
Python Study Material
38 pages
DATA, EXPRESSIONS, STATEMENTS
PDF
No ratings yet
DATA, EXPRESSIONS, STATEMENTS
37 pages
Python Programming 1
PDF
No ratings yet
Python Programming 1
40 pages
PYTHON Lab Manual1
PDF
No ratings yet
PYTHON Lab Manual1
59 pages
Introduction
PDF
No ratings yet
Introduction
32 pages
Report On Python
PDF
No ratings yet
Report On Python
24 pages
Python Tutorial
PDF
No ratings yet
Python Tutorial
22 pages
A Winter Training Report On Automation Using Python
PDF
No ratings yet
A Winter Training Report On Automation Using Python
30 pages
Python Essentials
PDF
No ratings yet
Python Essentials
8 pages
Python
PDF
No ratings yet
Python
11 pages
UNIT 2(python)_print
PDF
No ratings yet
UNIT 2(python)_print
35 pages
Related titles
Click to expand Related Titles
Carousel Previous
Carousel Next
OReilly Learning Python 4th Edition Oct 2009
PDF
OReilly Learning Python 4th Edition Oct 2009
Mastering Python For Artificial Intelligence B0CB4BRQHJ
PDF
Mastering Python For Artificial Intelligence B0CB4BRQHJ
Python - 1 Year - Unit-1
PDF
Python - 1 Year - Unit-1
Python Report
PDF
Python Report
A Summer Training Report On Python and It's Libraries Under The Guidance of
PDF
A Summer Training Report On Python and It's Libraries Under The Guidance of
Industrial Visit Report
PDF
Industrial Visit Report
Project Report
PDF
Project Report
Window 10 Activation
PDF
Window 10 Activation
Pt. L R Group of Institutions Faridabad Delhi NCR
PDF
Pt. L R Group of Institutions Faridabad Delhi NCR
INternship Report
PDF
INternship Report
Py
PDF
Py
industrial-training-report-on-python-new_compress (AutoRecovered)
PDF
industrial-training-report-on-python-new_compress (AutoRecovered)
A Summer Trainning Report
PDF
A Summer Trainning Report
Data Science2
PDF
Data Science2
BCA3RDPYTHON (2)
PDF
BCA3RDPYTHON (2)
Unit 3
PDF
Unit 3
?python For Data Analysis Cheatsheet
PDF
?python For Data Analysis Cheatsheet
Python Notes
PDF
Python Notes
PROGRAMMING IN PYTHON I Unit
PDF
PROGRAMMING IN PYTHON I Unit
Unit 1 Introduction
PDF
Unit 1 Introduction
python1
PDF
python1
Python: By: Deepak Malusare
PDF
Python: By: Deepak Malusare
Python 45
PDF
Python 45
Python UNIT 2
PDF
Python UNIT 2
Python Notes 2022
PDF
Python Notes 2022
Python Notes
PDF
Python Notes
PYTHON Full Notes
PDF
PYTHON Full Notes
Python SDFSD
PDF
Python SDFSD
Unit 2 Ge3151 PSPP New
PDF
Unit 2 Ge3151 PSPP New
Python Language: Introdction
PDF
Python Language: Introdction
PYT
PDF
PYT
Python Report
PDF
Python Report
Python Intro
PDF
Python Intro
Python
PDF
Python
Week 1 Introduction To Python
PDF
Week 1 Introduction To Python
U2 of python
PDF
U2 of python
Python Tutorial
PDF
Python Tutorial
Phython Reviewer Python
PDF
Phython Reviewer Python
Python Tutorial
PDF
Python Tutorial
PSPPUT1 (1)
PDF
PSPPUT1 (1)
heena
PDF
heena
ToolsTutorial1999 Python COM Tutorial
PDF
ToolsTutorial1999 Python COM Tutorial
Final Project Report
PDF
Final Project Report
Unit - I
PDF
Unit - I
ML Lab File
PDF
ML Lab File
Python Programming Basics - Part 1
PDF
Python Programming Basics - Part 1
Python Lectures
PDF
Python Lectures
Python Study Material
PDF
Python Study Material
DATA, EXPRESSIONS, STATEMENTS
PDF
DATA, EXPRESSIONS, STATEMENTS
Python Programming 1
PDF
Python Programming 1
PYTHON Lab Manual1
PDF
PYTHON Lab Manual1
Introduction
PDF
Introduction
Report On Python
PDF
Report On Python
Python Tutorial
PDF
Python Tutorial
A Winter Training Report On Automation Using Python
PDF
A Winter Training Report On Automation Using Python
Python Essentials
PDF
Python Essentials
Python
PDF
Python
UNIT 2(python)_print
PDF
UNIT 2(python)_print