Similar Posts
How to Install Whl Packages and Modules in Python
Sometimes, you might need some packages which do not come with the standard Python libraries and you would want to install them separately. You will notice how frustrating it is when you get stuck because of a package you are missing. Sentdex on Youtube covers that accurately and you can watch him here: …
Connect Push Commit Pull Your GitHub Repository To Your Local Computer’s Directory
Introduction Github is a web version control system which is very useful when you are working on various projects or you want to keep track of changes you make to your project over time. It is a very useful tool as you venture into Data Science and Programming Objective After you have created a…
The sp_execute_external_script (Transact-SQL) Definition And Arguments
The sp_execute_external_script system stored procedure is the stored procedure which invokes the external environment to run an external script (either Python or R ) in a T-SQL script. This is quite highlights of the sp_execute_external_script stored and some short notes on it. let’s quickly look at the structure of the stored procedure sp_execute_external_script @language = N’language,…
Merry Christmas :) !!!
People Who Read The Above Post Also Read This: How To Power On The Python Idle – Python How To Track The Effectiveness of Email Campaign – Some Points to Consider
Python List Comprehension Dictionary Set Comprehension and For Loops
This is a guide on Python List comprehension. List comprehension is a great way to write simple and easy to read Python codes. You can use it dictionaries and sets as well. Credits to Corey Schafer , creator of Python course materials. lets create a list In [115]: num = range(10) num Out[115]: [0, 1,…
GDPR- What Is It ? Why You Should Be Concerned And What Actions To Take
GDPR stands for General Data Protection Regulation (GDPR) also referred to as the EU General Data Protection Regulation (GDPR). According to the EUGDPR website , The EU General Data Protection Regulation (GDPR) is the most important change in data privacy regulation in 20 years. The EU General Data Protection Regulation (GDPR) replaces the Data Protection Directive 95/46/EC and was designed to harmonize…