Python ML Algorithm
Python ML Algorithm
Processor 32 or 64 bit
Windows OS 7, 8 or 10
Python 2.7, 3.7
Python Idle
OpenCV opencv2.4, opencv contrib 3.4
Anaconda3 4.4
Data Base MySQL-Front
Basic Points About Python
Numbers are mainly of two types - integers and
floats.
There is no separate long type. The int type can be
an integer of any size.
string like 'This is a string' or "It's a string!" .
You can specify strings using single quotes such as
'Quote me on this' .
Strings in double quotes work exactly the same way
as strings in single quotes. An example is "What's
your name?" .
Basic Points About Python
There is no separate char data type in Python.
Python is strongly object-oriented in the sense that
everything is an object including numbers, strings
and functions.
The Python for loop is radically different from the
C/C++ for loop.
There is no switch statement in Python. You can use
an if..elif..else statement
Variables are used by just assigning them a value.
No declaration or data type definition is
needed/used.
Types of Machine Learning Algorithms