Skip to content

santosh2702/Machine-Learning-using-Python

Repository files navigation

Machine-Learning-using-Python

machine-learning-with-python


Machine learning is a field that uses algorithms to learn from data and make predictions. Practically, this means that we can feed data into an algorithm, and use it to make predictions about what might happen in the future. This has a vast range of applications, from self-driving cars to stock price prediction. Not only is machine learning interesting, it's also starting to be widely used, making it an extremely practical skill to learn. Python has an amazing ecosystem of libraries that make machine learning easy to get started with.like scikit-learn, Pandas, and Matplotlib libraries




1.python identifiers,reserve words
2.lines and indentations,multiline statements
3.quotation in python,comments
•Parsing Command-Line Arguments
•Python Variable Type
•Python Basic Operators
•Python Decision Making
•Python Loops
•Python List
•Python Tuples
•Python Dictionary


A Python program can handle date and time in several ways. Converting between date formats is a common chore for computers. Python's time and calendar modules help track dates and times.



A function is a block of code which only runs when it is called.You can pass data, known as parameters, into a function.A function can return data as a result.In Python a function is defined using the def keyword:



Until now error messages haven’t been more than mentioned, but if you have tried out the examples you have probably seen some. There are (at least) two distinguishable kinds of errors: syntax errors and exceptions.



Consider a module to be the same as a code library.A file containing a set of functions you want to include in your application. To create a module just save the code you want in a file with the file extension .py



Until now, you have been reading and writing to the standard input and output. Now, we will see how to use actual data files. Python provides basic functions and methods necessary to manipulate files by default. You can do most of the file manipulation using a file object.



A regular expression is a special sequence of characters that helps you match or find other strings or sets of strings, using a specialized syntax held in a pattern. Regular expressions are widely used in UNIX world.



The OS module in Python provides a way of using operating system dependent functionality.



NumPy stands for ‘Numerical Python’ or ‘Numeric Python’. It is an open source module of Python which provides fast mathematical computation on arrays and matrices.

Similar to NumPy, Pandas is one of the most widely used python libraries in data science. It provides high-performance, easy to use structures and data analysis tools.

Matplotlib is a 2d plotting library which produces publication quality figures in a variety of hardcopy formats and interactive environments. Matplotlib can be used in Python scripts, Python and IPython shell, Jupyter Notebook, web application servers and GUI toolkits.



Object-oriented programming is a programming paradigm based on the concept of "objects", which may contain data, in the form of fields, often known as attributes; and code, in the form of procedures, often known as methods.