R Programming Module Overview Learning Objectives Learning

Total Page:16

File Type:pdf, Size:1020Kb

R Programming Module Overview Learning Objectives Learning R Programming Module Overview The following module comprises of R programming basics and application of several Statistical Techniques using it. The module aims to provide exposure in terms of Statistical Analysis, Hypothesis Testing, Regression and Correlation using R programming language. Learning Objectives The objective of this module to make students exercise the fundamentals of statistical analysis in R environment. They would be able to analysis data for the purpose of exploration using Descriptive and Inferential Statistics. Students will understand Probability and Sampling Distributions and learn the creative application of Linear Regression in multivariate context for predictive purpose. Learning Outcomes After the successful completion of this module, students will be able to: • Install, Code and Use R Programming Language in R Studio IDE to perform basic tasks on Vectors, Matrices and Data frames. • Describe key terminologies, concepts and techniques employed in Statistical Analysis. • Define, Calculate, Implement Probability and Probability Distributions to solve a wide variety of problems. • Conduct and Interpret a variety of Hypothesis Tests to aid Decision Making. • Understand, Analyse, Interpret Correlation and Regression to analyse the underlying relationships between different variables. Unit I Introduction to R Programming R and R Studio, Logical Arguments, Missing Values, Characters, Factors and Numeric, Help in R, Vector to Matrix, Matrix Access, Data Frames, Data Frame Access, Basic Data Manipulation Techniques, Usage of various apply functions – apply, lapply, sapply and tapply, Outliers treatment. Unit II Descriptive Statistics Types of Data, Nominal, Ordinal, Scale and Ratio, Measures of Central Tendency, Mean, Mode and Median, Bar Chart, Pie Chart and Box Plot, Measures of Variability, Range, Inter-Quartile- Range, Standard Deviation, Skewness and Kurtosis, Histogram, Stem and Leaf Diagram, Standard Error of Mean and Confidence Intervals. Unit III Probability, Probability& Sampling Distribution Experiment, Sample Space and Events, Classical Probability, General Rules Of Addition, Conditional Probability, General Rules For Multiplication, Independent Events, Bayes’ Theorem, Discrete Probability Distributions: Binomial, Poisson, Continuous Probability Distribution, Normal Distribution & t-distribution, Sampling Distribution and Central Limit Theorem. Unit IV Statistical Inference and Hypothesis Testing Population and Sample, Null and Alternate Hypothesis, Level of Significance, Type I and Type II Errors, One Sample t Test, Confidence Intervals, One Sample Proportion Test, Paired Sample t Test, Independent Samples t Test, Two Sample Proportion Tests, One Way Analysis of Variance and Chi Square Test. Unit V Correlation and Regression Analysis of Relationship, Positive and Negative Correlation, Perfect Correlation, Correlation Matrix, Scatter Plots, Simple Linear Regression, R Square, Adjusted R Square, Testing of Slope, Standard Error of Estimate, Overall Model Fitness, Assumptions of Linear Regression, Multiple Regression, Coefficients of Partial Determination, Durbin Watson Statistics, Variance Inflation Factor. References 1. Ken Black, 2013, Business Statistics, New Delhi, Wiley. 2. Lee, Cheng. et al., 2013, Statistics for Business and Financial Economics, New York: Heidelberg Dordrecht. 3. Anderson, David R., Thomas A. Williams and Dennis J. Sweeney, 2012, Statistics for Business and Economics, New Delhi: South Western. 4. Waller, Derek, 2008, Statistics for Business, London: BH Publications. 5. Levin, Richard I. and David S. Rubin, 1994, Statistics for Management, New Delhi: Prentice Hall. Python Programming Module Overview Python Programming module is intended for students who wish to learn the Python programming language. This module is highly important so as to proceed with this programme. The module comprises of Programming basics with regards to Python Language such as Data Types, Operators, Functions, Classes and Exception Handling. Learning Objectives This module will help students gain much needed knowledge pertaining to Python Programming, so as to prepare them for the advanced modules such as ML. Python scripting is user-friendly and is the most used language in industry when it comes to designing and scripting applications with respect to Emerging Technologies. Learning Outcomes Upon successful completion of this module, students should be able to: • To understand why Python is a useful scripting language. • To learn how to use lists, tuples, and dictionaries in Python programs. • To learn how to write loops and decision statements in Python. • To learn how to write functions and pass arguments in Python. • To learn how to design object‐oriented programs with Python classes. • To learn how to use exception handling in Python applications for error handling. Unit I Introduction History of Python, Need of Python Programming, Applications Basics of Python Programming Using the REPL(Shell), Running Python Scripts, Variables, Assignment, Keywords, Input- Output, Indentation. Unit II Types, Operators and Expressions Types - Integers, Strings, Booleans; Operators- Arithmetic Operators, Comparison (Relational) Operators, Assignment Operators, Logical Operators, Bitwise Operators, Membership Operators, Identity Operators, Expressions. Unit III Data Structures and Control Flow Lists, Operations, Slicing, Methods, Tuples, Sets, Dictionaries, Sequences, Comprehensions, Conditional blocks using If, Else and El-if, For Loop, For loop using Ranges, String, list and Dictionaries, While Loop, Loop Manipulation using Pass, Continue, Break and Else, Conditional and Loops Block. Unit IV Functions Modules and Packages Defining Functions, Calling Functions, Passing Arguments, Keyword Arguments, Default Arguments, Variable-length arguments, Anonymous Functions, Function Returning Values, Scope of the Variables in a Function - Global and Local Variables. Creating modules, Name Spacing, Introduction to PIP, Installing Packages via PIP, Using Python Packages. Unit V Object Oriented Programming & Exception Handling Classes, Self-Variable, Methods, Constructor Method, Inheritance, Overriding Methods, Data Hiding, Difference between an Error and Exception, Handling Exception, Try Except Block, Raising Exceptions, and User Defined Exceptions. References 1. R.Nageswara Rao, 2018, Core Python Programming, Dreamtech. 2. John Hearty, 2016, Advanced Machine Learning with Python, Packt. 3. Jake VanderPlas, 2016, Python Data Science Handbook: Essential Tools for Working with Data, O'Reilly. 4. Mark Lutz, 2010, Programming Python, O'Reilly. 5. Tim Hall and J-P Stacey, 2009, Python 3 for Absolute Beginners, Apress. Structured Query Language Module Overview In this course, the students will learn the basics of the SQL/No SQL and the Relational Databases. They will learn about the Relational Model and Relational Model concepts and constraints. The students will get exposure to key concepts with regards to SQL Language and DBMS such as Normalization, Transaction Processing along-side an exposure to No SQL programming. Learning Outcomes This module will help students gain much needed knowledge pertaining to Relational Database Management Systems, Data Models, SQL query processing, Normalization along with an introduction to No SQL Database systems using Mongo DB. Learning Objectives • To understand the basic concepts and the applications of Database Systems. • To master the basics of SQL and construct queries using SQL. • To become familiar with the basic issues of Transaction Processing and Concurrency Control. • To become familiar with NO SQL Programming Language. • Explain the architecture, define objects, load and query data within No SQL databases. Unit I Introduction to Database Management Systems Introduction-Database System Applications, Purpose of Database Systems, Views of Data, Data Abstraction, Instances and Schemas, Data Models, Database Languages, DDL, DML, Database Architecture, Database Users and Administrators, Database Design, ER Diagrams, Entities, Attributes and Entity Sets, Relationships and Relationship sets, Integrity Constraints, Views. Unit II SQL Operators and Relational Theorems Relational Algebra and Calculus, Selection and Projection, Set Operations, Renaming, Joins, Division, Relational calculus, Tuple Relational Calculus, Domain Relational Calculus, Forms of Basic SQL Query, Nested Queries, Comparison Operators, Aggregate Operators, NULL values, Logical connectives, AND, OR and NOT, Outer Joins, Triggers. Unit III Normalization Problems Caused by Redundancy, Decompositions, Functional Dependencies, Normal Forms, First, Second, Third Normal forms, BCNF, Properties of Decompositions, Loss less Join Decomposition, Dependency Preserving Decomposition, Multi Valued Dependencies, Fourth Normal Form, Join Dependencies, Fifth Normal Form. Unit IV Transactions Transaction Management, Transaction Concept, Transaction State, Implementation of Atomicity and Durability, Concurrent, Executions, Serializability, Recoverability, Implementation of Isolation, testing for serializability, Concurrency Control, Lock, Timestamp Based Protocols, Validation Based Protocols, Recovery, Failure Classification, Storage Structure, Atomicity, Log Based Recovery, Remote Backup Systems. Unit V No SQL Overview of No SQL, Types of No SQL Databases, No SQL Storage Architecture, CRUD Operations in MongoDB, Querying, Modifying and Managing No SQL Databases, Indexing and Ordering, Migrating from RDBMS to No SQL, No SQL in Cloud,
Recommended publications
  • Expert Python Programming Third Edition
    Expert Python Programming Third Edition Become a master in Python by learning coding best practices and advanced programming concepts in Python 3.7 Michał Jaworski Tarek Ziadé BIRMINGHAM - MUMBAI Expert Python Programming Third Edition Copyright © 2019 Packt Publishing All rights reserved. No part of this book may be reproduced, stored in a retrieval system, or transmitted in any form or by any means, without the prior written permission of the publisher, except in the case of brief quotations embedded in critical articles or reviews. Every effort has been made in the preparation of this book to ensure the accuracy of the information presented. However, the information contained in this book is sold without warranty, either express or implied. Neither the authors, nor Packt Publishing or its dealers and distributors, will be held liable for any damages caused or alleged to have been caused directly or indirectly by this book. Packt Publishing has endeavored to provide trademark information about all of the companies and products mentioned in this book by the appropriate use of capitals. However, Packt Publishing cannot guarantee the accuracy of this information. Commissioning Editor: Kunal Chaudhari Acquisition Editor: Chaitanya Nair Content Development Editor: Zeeyan Pinheiro Technical Editor: Ketan Kamble Copy Editor: Safis Editing Project Coordinator: Vaidehi Sawant Proofreader: Safis Editing Indexer: Priyanka Dhadke Graphics: Alishon Mendonsa Production Coordinator: Shraddha Falebhai First published: September 2008 Second edition: May 2016 Third edition: April 2019 Production reference: 1270419 Published by Packt Publishing Ltd. Livery Place 35 Livery Street Birmingham B3 2PB, UK. ISBN 978-1-78980-889-6 www.packtpub.com To my beloved wife, Oliwia, for her love, inspiration, and her endless patience.
    [Show full text]
  • Op E N So U R C E Yea R B O O K 2 0
    OPEN SOURCE YEARBOOK 2016 ..... ........ .... ... .. .... .. .. ... .. OPENSOURCE.COM Opensource.com publishes stories about creating, adopting, and sharing open source solutions. Visit Opensource.com to learn more about how the open source way is improving technologies, education, business, government, health, law, entertainment, humanitarian efforts, and more. Submit a story idea: https://opensource.com/story Email us: [email protected] Chat with us in Freenode IRC: #opensource.com . OPEN SOURCE YEARBOOK 2016 . OPENSOURCE.COM 3 ...... ........ .. .. .. ... .... AUTOGRAPHS . ... .. .... .. .. ... .. ........ ...... ........ .. .. .. ... .... AUTOGRAPHS . ... .. .... .. .. ... .. ........ OPENSOURCE.COM...... ........ .. .. .. ... .... ........ WRITE FOR US ..... .. .. .. ... .... 7 big reasons to contribute to Opensource.com: Career benefits: “I probably would not have gotten my most recent job if it had not been for my articles on 1 Opensource.com.” Raise awareness: “The platform and publicity that is available through Opensource.com is extremely 2 valuable.” Grow your network: “I met a lot of interesting people after that, boosted my blog stats immediately, and 3 even got some business offers!” Contribute back to open source communities: “Writing for Opensource.com has allowed me to give 4 back to a community of users and developers from whom I have truly benefited for many years.” Receive free, professional editing services: “The team helps me, through feedback, on improving my 5 writing skills.” We’re loveable: “I love the Opensource.com team. I have known some of them for years and they are 6 good people.” 7 Writing for us is easy: “I couldn't have been more pleased with my writing experience.” Email us to learn more or to share your feedback about writing for us: https://opensource.com/story Visit our Participate page to more about joining in the Opensource.com community: https://opensource.com/participate Find our editorial team, moderators, authors, and readers on Freenode IRC at #opensource.com: https://opensource.com/irc .
    [Show full text]
  • Python Programming (13A05806)
    13A05806 Python Programming DEPARTMENT OF COMPUTER SCIENCE AND ENGINEERING PYTHON PROGRAMMING (13A05806) YEAR / SEM: IV / II PREPARED BY: Mr. P. Rama Rao Department of CSE-GPCET 13A05806 Python Programming (13A05806) PYTHON PROGRAMMING UNIT – I: Introduction:History of Python, Need of Python Programming, Applications Basics of Python Programming Using the REPL(Shell), Running Python Scripts, Variables, Assignment, Keywords, Input-Output, Indentation. Types - Integers, Strings, Booleans; UNIT – II: Operators and Expressions: Operators- Arithmetic Operators, Comparison (Relational) Operators, Assignment Operators, Logical Operators, Bitwise Operators, Membership Operators, Identity Operators, Expressions and order of evaluations. Data Structures Lists - Operations, Slicing, Methods; Tuples, Sets, Dictionaries, Sequences. Comprehensions. UNIT – III: Control Flow - if, if-elif-else, for, while, break, continue, pass Functions - Defining Functions, Calling Functions, Passing Arguments, Keyword Arguments, Default Arguments, Variable-length arguments, Anonymous Functions, Fruitful Functions(Function Returning Values), Scope of the Variables in a Function - Global and Local Variables. UNIT – IV: Modules: Creating modules, import statement, from ..import statement, name spacing, Python packages, Introduction to PIP, Installing Packages via PIP, Using Python Packages Error and Exceptions: Difference between an error and Exception, Handling Exception, try except block, Raising Exceptions, User Defined Exceptions . Object Oriented Programming OOP in Python: Classes, 'self variable', Methods, Constructor Method, Inheritance, Overriding Methods, Data Hiding, UNIT – V: Brief Tour of the Standard Library - Operating System Interface - String Pattern Matching, Mathematics, Internet Access, Dates and Times, Data Compression, Multi Threading, GUI Programming, Turtle Graphics. Testing: Why testing is required ?, Basic concepts of testing, Unit testing in Python, Writing Test cases, Running Tests. TEXT BOOKS 1. Python Programming: A Modern Approach, Vamsi Kurama, Pearson 2.
    [Show full text]
  • Python Libraries.Pdf
    Astronomy ESFRI & Research Infrastructure Cluster ASTERICS - 653477 2nd ASTERICS-OBELICS International School 4-8 June 2018, Annecy, France. H2020-Astronomy ESFRI and Research Infrastructure Cluster (Grant Agreement number: 653477). ASTERICS-OBELICS School 2018 / Annecy PYTHON LIBRARIES Tamás Gál [email protected] https:/github.com/tamasgal @tamasgal OVERVIEW • Who is this clown? • Python Introduction • Basic Python Internals • Libraries and Tools for Scientific Computing • NumPy • Numba Make it faster! • NumExpr } • SciPy • AstroPy • Pandas • SymPy Tools for scientists! • Matplotlib • Jupyter } • IPython WHO IS THIS CLOWN? • Tamás Gál, born 1985 in Debrecen (Hungary) • PhD candidate in astro particle physics at Erlangen Centre for Astroparticle Physics (ECAP) working on the KM3NeT project • Programming background: • Coding enthusiast since ~1993 • First real application written in Amiga Basic (toilet manager, tons of GOTOs ;) • Python, Julia, JavaScript and C/C+/Obj-C for work • Haskell for fun • Earlier also Java, Perl, PHP, Delphi, MATLAB, whatsoever… • I also like playing around with integrated circuits and Arduino • Some related projects: KM3Pipe (analysis framework in the KM3NeT experiment), RainbowAlga (interactive 3D neutrino event display), ROyWeb (interactive realtime visualisation/graphing) 4 PYTHON BRIEF HISTORY OF PYTHON • Rough idea in the late 1980s • Meant to descend the ABC language • First line of code in December 1989 by Guido van Rossum • Python 2.0 in October 2000 • Python 3.0 in December 2008 6 PYTHONS POPULARITY “Programming language of the year” in 2007 and 2010. 7 POPULAR LANGUAGES (MAY 2017) Python is the fourth most popular language and rocks the top 10 since 2003. 8 POPULAR LANGUAGES (MAY 2018) May 2017 Python is still the fourth most popular language and rocks the top 10 since 2003.
    [Show full text]
  • Comparative Studies of Six Programming Languages
    Comparative Studies of Six Programming Languages Zakaria Alomari Oualid El Halimi Kaushik Sivaprasad Chitrang Pandit Concordia University Concordia University Concordia University Concordia University Montreal, Canada Montreal, Canada Montreal, Canada Montreal, Canada [email protected] [email protected] [email protected] [email protected] Abstract Comparison of programming languages is a common topic of discussion among software engineers. Multiple programming languages are designed, specified, and implemented every year in order to keep up with the changing programming paradigms, hardware evolution, etc. In this paper we present a comparative study between six programming languages: C++, PHP, C#, Java, Python, VB ; These languages are compared under the characteristics of reusability, reliability, portability, availability of compilers and tools, readability, efficiency, familiarity and expressiveness. 1. Introduction: Programming languages are fascinating and interesting field of study. Computer scientists tend to create new programming language. Thousand different languages have been created in the last few years. Some languages enjoy wide popularity and others introduce new features. Each language has its advantages and drawbacks. The present work provides a comparison of various properties, paradigms, and features used by a couple of popular programming languages: C++, PHP, C#, Java, Python, VB. With these variety of languages and their widespread use, software designer and programmers should to be aware
    [Show full text]
  • A Brief Overview of Functional Programming Languages
    electronic Journal of Computer Science and Information Technology (eJCSIT), Vol. 6, No. 1, 2016 A Brief Overview of Functional Programming Languages Jagatheesan Kunasaikaran1, Azlan Iqbal2 1ZALORA Malaysia, Jalan Dua, Chan Sow Lin, Kuala Lumpur, Malaysia e-mail: [email protected] 2College of Computer Science and Information Technology, Universiti Tenaga Nasional, Putrajaya Campus, Selangor, Malaysia e-mail: [email protected] Abstract – Functional programming is an important Common programming paradigms are procedural, object- programming paradigm. It is based on a branch of oriented and functional. Figure 1 illustrates conceptually mathematics known as lambda calculus. In this article, we the differences between the common programming provide a brief overview, aimed at those new to the field, and language paradigms [1]. Procedural and object-oriented explain the progress of functional programming since its paradigms mutate or alter the data along program inception. A selection of functional languages are provided as examples. We also suggest some improvements and speculate execution. On the other hand, in pure functional style, the on the potential future directions of this paradigm. data does not exist by itself or independently. A composition of function calls with a set of arguments Keywords – functional, programming languages, LISP, Python; generates the final result that is expected. Each function is Javascript,Java, Elm, Haskell ‘atomic’ as it only executes operations defined in it to the input data and returns the result of the computation to the ‘callee’. I. INTRODUCTION II. FUNCTIONAL LANGUAGES Programming languages can be classified into the style of programming each language supports. There are multiple Functional programming is based on mathematical logic.
    [Show full text]
  • International Journal of Advance Engineering and Research
    International Journal of Advance Engineering and Research Development Scientific Journal of Impact Factor (SJIF): 4.72 Special Issue SIEICON-2017,April -2017 e-ISSN : 2348-4470 p-ISSN : 2348-6406 Python Programming-Applications and Future Kalyani Adawadkar1 1Head of Department, Department of Information Technology, Sigma Institute of Engineering Abstract — Python is a high-level and powerful object-oriented programming language created by Guido van Rossum. Because of its simple syntax, it is a very good choice for those who are learning programming for the first time. It is used in vast number of applications due to the various standard libraries that come along with it and its capacity to integrate with other languages and use their features. This paper describes the main features of Python programming. It lists out the difference between Python and other language with the help of some code. This paper then discusses applications of Python programming. To end with we will see a few good examples where python programming is being used. Keywords-programming, open source, object-oriented, interoperability, sockets I. INTRODUCTION Python was conceived in late 1980s, while its implementation began in late 1989 by Guido van Rossum at Centrum Wiskunde & Informatica (CWI) in the Netherlands. It was implemented as a successor of ABC language capable of exception handling and interfacing with the operating system Amoeba. Van Rossum is Python's principal author, and his continuing central role in deciding the road to development of Python is reflected in the title given to him by the Python community, benevolent dictator for life (BDFL) [4,5,6].
    [Show full text]
  • Learn Python in 7 Days
    Learn Python in 7 Days Get up-and-running with Python Mohit Bhaskar N. Das BIRMINGHAM - MUMBAI Learn Python in 7 Days Copyright © 2017 Packt Publishing All rights reserved. No part of this book may be reproduced, stored in a retrieval system, or transmitted in any form or by any means, without the prior written permission of the publisher, except in the case of brief quotations embedded in critical articles or reviews. Every effort has been made in the preparation of this book to ensure the accuracy of the information presented. However, the information contained in this book is sold without warranty, either express or implied. Neither the authors, nor Packt Publishing, and its dealers and distributors will be held liable for any damages caused or alleged to be caused directly or indirectly by this book. Packt Publishing has endeavored to provide trademark information about all of the companies and products mentioned in this book by the appropriate use of capitals. However, Packt Publishing cannot guarantee the accuracy of this information. First published: May 2017 Production reference: 1190517 Published by Packt Publishing Ltd. Livery Place 35 Livery Street Birmingham B3 2PB, UK. ISBN 978-1-78728-838-6 www.packtpub.com Credits Authors Copy Editor Mohit Muktikant Garimella Bhaskar N. Das Reviewer Project Coordinator Rejah Rehim Ulhas Kambali Commissioning Editor Proofreader Kunal Parikh Safis Editing Acquisition Editor Indexer Denim Pinto Pratik Shirodkar Content Development Editor Graphics Anurag Ghogre Abhinash Sahu Technical Editor Production Coordinator Hussain Kanchwala Deepika Naik About the Authors Mohit ([email protected]) is a Python programmer with a keen interest in the field of information security.
    [Show full text]
  • Python Tutorial by Bernd Klein
    Python Tutorial by Bernd Klein bodenseo © 2021 Bernd Klein All rights reserved. No portion of this book may be reproduced or used in any manner without written permission from the copyright owner. For more information, contact address: [email protected] www.python-course.eu Python Course Python Tutorial by Bernd Klein Strings.......................................................................................................................................10 Execute a Python script ............................................................................................................11 Start a Python program.............................................................................................................12 Loops ......................................................................................................................................136 Iterators and Iterables .............................................................................................................150 Coffee, Dictionary and a Loop ...............................................................................................171 Parameters and Arguments.....................................................................................................226 Global, Local and nonlocal Variables.....................................................................................237 Regular Expressions ...............................................................................................................305 Lambda, filter, reduce
    [Show full text]
  • The Official Ubuntu Book, 7Th Edition.Pdf
    ptg8126969 Praise for Previous Editions of The Official Ubuntu Book “The Official Ubuntu Book is a great way to get you started with Ubuntu, giving you enough information to be productive without overloading you.” —John Stevenson, DZone book reviewer “OUB is one of the best books I’ve seen for beginners.” —Bill Blinn, TechByter Worldwide “This book is the perfect companion for users new to Linux and Ubuntu. It covers the basics in a concise and well-organized manner. General use is covered separately from troubleshooting and error-handling, making the book well-suited both for the beginner as well as the user that needs extended help.” —Thomas Petrucha, Austria Ubuntu User Group “I have recommended this book to several users who I instruct regularly on ptg8126969 the use of Ubuntu. All of them have been satisfied with their purchase and have even been able to use it to help them in their journey along the way.” —Chris Crisafulli, Ubuntu LoCo Council, Florida Local Community Team “This text demystifies a very powerful Linux operating system . In just a few weeks of having it, I’ve used it as a quick reference a half-dozen times, which saved me the time I would have spent scouring the Ubuntu forums online.” —Darren Frey, Member, Houston Local User Group This page intentionally left blank ptg8126969 The Official Ubuntu Book Seventh Edition ptg8126969 This page intentionally left blank ptg8126969 The Official Ubuntu Book Seventh Edition Matthew Helmke Amber Graner With Kyle Rankin, Benjamin Mako Hill, ptg8126969 and Jono Bacon Upper Saddle River, NJ • Boston • Indianapolis • San Francisco New York • Toronto • Montreal • London • Munich • Paris • Madrid Capetown • Sydney • Tokyo • Singapore • Mexico City Many of the designations used by manufacturers and sellers to distinguish their products are claimed as trademarks.
    [Show full text]
  • Why Python Rocks for Research...???
    International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056 Volume: 06 Issue: 09 | Sep 2019 www.irjet.net p-ISSN: 2395-0072 WHY PYTHON ROCKS FOR RESEARCH....??? Kapish Kumar Student of B.Tech CSE Department, IIMT College of Engg. , Gr.Noida(U.P.)India. ---------------------------------------------------------------------***---------------------------------------------------------------------- Abstract - Python is a high-level and powerful object- documenting the design decisions that have gone into oriented programming language created by Guido van Python. Outstanding PEPs are commented and reviewed by Rossum. Because of its simple syntax, it is a very good choice the Python Community. for those who are learning programming for the first time. It is used in vast number of applications due to the various As of March 2017, Python is the fifth most popular language. standard libraries that come along with it and its capacity to A study carried out on Python found it to be more productive integrate with other languages and use their features. This than conventional languages for problem solving involving paper describes the main features of Python programming. It string manipulation and search in a dictionary. The social lists out the difference between Python and other language news networking site Reddit is written entirely in Python. with the help of some code. This paper then discusses Python has been used in Artificial Intelligence tasks. Python applications of Python programming. To end with we will is often used for Natural Language processing tasks. Many see a few good examples where python programming is Linux distributions use installers written in Python. Python being used. has also extensive use in Information Security Industry.
    [Show full text]
  • Python Python Was Designed by Guido Van Rossum in the Late 80'S and Early 90'S
    CS520 Principles of Programming Languages Dr. Christian Collberg Final Exam May 14th, 2008 Raquel Torres Peralta Federico Miguel Cirett Galán History of Python Python was designed by Guido van Rossum in the late 80's and early 90's. The name 'Python' is based on the famous BBC TV series of the 70's Monty Python Flying Circus . 1 Guido is a fan of this long ousted show, and the code examples in the documentation and tutorials of Python have plenty of references to it. Rossum worked in the mid 80's in the programming language ABC, which targets computer-illiterate students, with a syntax that is easy to write. However, it was designed to write trivial programs. It had no I/O interactivity and no extensibility. By 1986, van Rossum was working in the Amoeba distributed operating system project at CWI ( Centrum voor Wiskunde en Informatics), and by the end of the decade, he realized that the project needed a merger between ABC and a shell script to do some administrative tasks in the Amoeba OS, since neither sufficed alone. So, in the Christmas break of 1989, he wrote the first draft of Python in only two weeks, borrowing some ideas from ABC, Modula-2 and Modula- 3, with the goal in mind of a general-purpose scripting language that would help him with the Amoeba tasks. 2 It took him over a year to have a working kit and in 1991 he released Python 0.90 to the USENET with a General Public License (GPL). Python Python is a very high level scripting multi-paradigm programming language; it supports object-oriented programming, structured programming, and functional programming.
    [Show full text]