Programming with Jignesh
If you want to learn some more cool things related to Programming and Coding then please visit my YouTube channel (Programming with Jignesh) and click on the subscriber button for more updates.
Here is the list of Videos from my YouTube Channel.
-
Loops in Python | while, for and nested loop in Python | Learn Python | Python for Beginners
#loops #while #for #python #learntocode
In this video tutorial we will learn loops in Python. We will learn while loop, for loop and nested loop. We will also learn some loop control statement like break, continue and pass statement. -
Decision Making in Python | Python if-else statements | Learn Python | Python for Beginners
#DecisionMakinginPython #Python #PythonIfElse #NestedIfElse #PythonForBeginners
In this video tutorial, we will learn decision making in Python or we can say if-else and nested if-else statements in Python.
Decision making is the most important aspect of almost all programming languages. As the name implies, decision making allows us to run a particular block of code for a particular decision.
Follow Jignesh Darji on :
Facebook: https://www.facebook.com/jigneshdarjicom
Twitter: https://twitter.com/jigneshdarjicom
Instagram: https://www.instagram.com/jigneshdarjicom/
Website: https://jigneshdarji.com/ -
Basic Operators in Python | Learn Python | Python for Beginners
#pythonoperators #python #basicoperators #pythonforbeginners #learntocode
In this video tutorial, we will learn basic operators in Python. We will learn below types of operators:
Arithmetic Operators
Comparison (Relational) Operators
Assignment Operators
Logical Operators
Bitwise Operators
Membership Operators
Identity Operators
Follow Jignesh Darji on :
Facebook: https://www.facebook.com/jigneshdarjicom
Twitter: https://twitter.com/jigneshdarjicom
Instagram: https://www.instagram.com/jigneshdarjicom/
Website: https://jigneshdarji.com/ -
Variable Types in Python | Learn Python | Python for Beginners
#python #variabletypes #pythonforbeginners #learntocode
In this video tutorial, we will learn how we can declare variables, assign values to the variable and variable types in python.
Variables are nothing but reserved memory locations to store values. This means that when you create a variable you reserve some space in memory.
Follow Jignesh Darji on :
Facebook: https://www.facebook.com/jigneshdarjicom
Twitter: https://twitter.com/jigneshdarjicom
Instagram: https://www.instagram.com/jigneshdarjicom/
Website: https://jigneshdarji.com/ -
Getting started with JupyterLab and Google Colab | Introduction, Installation and Review
#JupyterLab #GoogleColab #JupyterNotebook
In this video, we will learn how to get up and running with the JupyterLab or the classic Jupyter Notebook on your computer within minutes!
Install with pip:
pip install jupyterlab
Once installed, launch JupyterLab with:
jupyter-lab
Run Jupyter Notebook:
jupyter notebook
Follow Jignesh Darji on :
Facebook: https://www.facebook.com/jigneshdarjicom
Twitter: https://twitter.com/jigneshdarjicom
Instagram: https://www.instagram.com/jigneshdarjicom/
Website: https://jigneshdarji.com/ -
Discovering the Match between Data Science and Python | Python for Data Science | For CS/IT students
#Python #DataScience #PythonforDataSceince
Data science may seem like one of those technologies that you had never use, but you had be wrong. Yes, data science involves the use of advanced math techniques, statistics, and big data. However, data science also involves helping you make smart decisions, creating suggestions for options based on previous choices, and making robots see objects. In fact,
people use data science in so many different ways that you literally can’t look anywhere or do anything without feeling the effects of data science on your life.
In this video tutorial I try to cover Discovering the Match between Data Science and Python topic for Python for Data Science subject with the help of "Python for data science for dummies book" by the author John Paul Mueller and Luca Massaron. This video help CS and IT engineering student to understand the Python for Data Science.
Reference:
Python for data science for dummies
Author : John Paul Mueller, Luca Massaron
Publisher : Wiley
Follow Jignesh Darji on :
Facebook: https://www.facebook.com/jigneshdarjicom
Twitter: https://twitter.com/jigneshdarjicom
Instagram: https://www.instagram.com/jigneshdarjicom/
Website: https://jigneshdarji.com/ -
How to setup Visual Studio Code to run the Python program? | Getting Started with Python in VS Code
#VSCode #Python #GettingStartedwithPython
This is a Python hello world tutorial using the Python extension in Visual Studio Code.
In this video tutorial, you use Python 3 to create the simplest Python "Hello World" application in Visual Studio Code. By using the Python extension, you make VS Code into a great lightweight Python IDE.
Follow Jignesh Darji on :
Facebook: https://www.facebook.com/jigneshdarjicom
Twitter: https://twitter.com/jigneshdarjicom
Instagram: https://www.instagram.com/jigneshdarjicom/
Website: https://jigneshdarji.com/ -
Migrate from ASP.NET MVC to ASP.NET Core MVC | Configure the ASP.NET Core site to use MVC
#aspdotnetmvc #dotnetcoremvc #aspnetcoremvc #migratemvctocoremvc
This video shows how to start migrating an ASP.NET MVC project to ASP.NET Core MVC. In the process, I highlight related changes from ASP.NET MVC.
Migrating from ASP.NET MVC is a multi-step process. This video covers the Initial setup, Configure the ASP.NET Core site to use MVC, Basic controllers & views, Static content, and Client-side dependencies. -
Build and Deploy a Machine Learning Model with FastAPI using Python | Programming with Jignesh
#FastAPI #Python #MachineLearning
Using this video tutorial you can learn how to build and deploy a machine learning model with FastAPI using Python. FastAPI is the easiest and most widely used method for deploying machine learning models is to wrap them inside a REST API.
*Some of the code for this tutorial is taken from GitHub for reference purposes only. -
See what your users want - with Microsoft Clarity | Microsoft Clarity configuration and Review
#Microsoft #Clarity #MicrosoftClarity
As per Microsoft, Clarity is a user behavior analytics tool that helps you understand how users are interacting with your website through features such as session replays and heatmaps. And one most important thing is it is a free service from Microsoft. -
Python Django CRUD operations using class-based generic view | Programming with Jignesh
#Python #Django #DjangoCRUD #GenericView
Django is a Python-based web framework that allows you to quickly create web applications. This video revolves around the complete implementation of Class-Based Views in Django (Create, Retrieve, Update, Delete).
In this video, I try to cover the following generic view.
CreateView – create or add new entries in a table in the database.
Retrieve Views – read, retrieve, search, or view existing entries as a list(ListView) or retrieve a particular entry in detail (DetailView)
UpdateView – update or edit existing entries in a table in the database
DeleteView – delete, deactivate, or remove existing entries in a table in the database -
Introduction to Python, IDE & Sample Program | Learn Python with an easy way | Python for Beginners
#Python #LearnPython #LearnToCode
Python is an easy to learn, powerful programming language. It has efficient high-level data structures and a simple but effective approach to object-oriented programming. Python’s elegant syntax and dynamic typing, together with its interpreted nature, make it an ideal language for scripting and rapid application development in many areas on most platforms.
In this video we will learn What is Python?, Why we use Python, Which IDE we can use to create a Python program and How can we install Python IDE in the windows system.