Tag: python
What is Regression In Machine Learning With a Example
Introduction Regression is a statistical technique that is used to analyze the relationship between a dependent variable and one or more independent variables. As I have noted the objective is to find the most suitable function that characterizes the link between these variables. It seeks to find the best-fit model, which can be used to… Continue reading What is Regression In Machine Learning With a Example
What is Return Statement in Python : Syntax and Usage
What is Return Statement in Python In Python return keyword is used at the end of the function when there is a need to send back the result of the function back to the caller. Software programming is not about printing result all the time. Behind the scenes, perform calculations hidden from the users. Further… Continue reading What is Return Statement in Python : Syntax and Usage
Creating Python Function That Take Parameters
Introduction According to Wikipedia Python is a high-level and general-purpose programming language. Its focus on design code readability with the use of significant indentation. Python dynamically typed language and garbage collected. It supports multiple programming mthod, including structured, object-oriented and functional programming. Read more about python on Wikipedia.Function in python is an block of code… Continue reading Creating Python Function That Take Parameters
Python3 101 Tricks for beginners Part 1
Introduction Python is an open source popular programming language. It is mostly using in every fields. In Python3 101 tricks for beginners part 1 is the first part of Python3 Tricks for begineers Series. Python List Small Python3 101 Tricks for beginners Part 1 I hope you knows about slicing, + operator, indexing, for loop.… Continue reading Python3 101 Tricks for beginners Part 1
How to Install Python in Ubuntu Through Terminal
Introduction Python is a popular programming language used for automation, web scraping, artificial intelligence, and other fields. At the time of writing this article python’s latest version is 3.12. Almost every Linux based distro comes with a version of Python included in the default system packages. As All Linux distribution have Python pre-installed. May be… Continue reading How to Install Python in Ubuntu Through Terminal