Sunday, 31 May 2020
Prerequisite:
User-defined function | Python | Castor Classes
https://www.youtube.com/watch?v=w8GFz...
Python for beginners:
https://www.youtube.com/watch?v=egq7Z...
Telegram: https://t.me/clcoding_python
https://www.facebook.com/pirawenpython/
https://www.facebook.com/groups/pirawenpython/
(adsbygoogle = window.adsbygoogle...
Saturday, 30 May 2020
Friday, 29 May 2020
Logistic Regression in python (part02) | python crash course08
i am rider (iari) May 29, 2020 Python No comments

Logistic Regression in python (part02) :
Hello friends, in the previous post we see input data processing methods. In this post we are going to see How create an Array and How to split data into train,test model. Let's start:
We have about...
Introduction to Microprocessor
Before you learn any programming language, it is important for one to understand some of the basics about computers and what are the languages that a computer can understand. Let’s have a view on it. A computer is a collection of hardware components. Let us consider here a few hardware components such as Microprocessor, RAM, Hard disk, ...
Wednesday, 27 May 2020
Wondering how a Java Program Executes???

We’ll see how it executes but first let’s get to know how a C program executes. And then we'll compare it with how java program executes. From the above diagram, we can see that C executes faster than Java as it has fewer steps...
Professional Python® Frameworks: Web 2.0 Programming with Django® and TurbogearsTM (Programmer to Programmer) Paperback – 16 October 2007 by Dana Moore (Author), Raymond Budd (Author), William Wright (Author)
Author May 27, 2020 Books, Python No comments

As two of the leading MVC web frameworks for Python, Django and TurboGears allow you to develop and launch sites in a fraction of the time compared to traditional techniques and they provide greater stability, scalability, and management...
Platform Dependency
One of the most important features of java is platform independency and to understand how java achieved platform indecency, one must learn what is platform dependency. Let us understand what is a platform to understand platform dependency. Platform is a combination of hardware and software. Hardware mainly refers to microprocessors and software...
Color Transforms | Image Handling | Python
Author May 27, 2020 Python No comments
Check this link to explore more:
https://pillow.readthedocs.io/en/3.1....
Python for beginners:
https://www.youtube.com/watch?v=egq7Z...
Telegram: https://t.me/clcoding_python
https://www.facebook.com/pirawenpython/
https://www.facebook.com/groups/pirawenpython/
(adsbygoogle = window.adsbygoogle || []).push({});
(adsbygoogle...
Crop Image | Python
Author May 27, 2020 Python No comments
Syntax: ImageVariableName.crop(box)
Parameters:
box – a 4-tuple defining the left, upper, right, and lower pixel coordinate.
Return type: Image (Returns a rectangular region as (left, upper, right, lower) tuple).
Note:
The Python Imaging Library uses a Cartesian pixel coordinate system, with (0,0) in the upper left corner.
Prerequisite:
Working with...
Working with Images in Python
Author May 27, 2020 Python No comments
Python for beginners:
https://www.youtube.com/watch?v=egq7Z...
Telegram: https://t.me/clcoding_python
https://www.facebook.com/pirawenpython/
https://www.facebook.com/groups/pirawenpython/
(adsbygoogle = window.adsbygoogle || []).push({});
(adsbygoogle = window.adsbygoogle || []).push({});...
Reading CSV files without using any library | Python
Author May 27, 2020 Python No comments
Code:
(Note: It will work only if you open your file with variable e)
li=[];
for i in e:
i=i.replace("\n","").split(",");
li.append(i);
e.close()
Note the values are float , but in above list li , those are stored as string , you can further type cast to float using this below code:
(Be careful in converting string to float , the first row...
Read a file line by line in Python
Author May 27, 2020 Python No comments
Python for beginners:
https://www.youtube.com/watch?v=egq7Z...
Telegram: https://t.me/clcoding_python
https://www.facebook.com/pirawenpython/
https://www.facebook.com/groups/pirawenpython/
(adsbygoogle = window.adsbygoogle || []).push({});
(adsbygoogle = window.adsbygoogle || []).push({});...
readline & readlines | Python
Author May 27, 2020 Python No comments
Prerequisite:
File Handling | Python | Castor Classes
https://www.youtube.com/watch?v=-ENVe...
Writing to file in Python | Castor Classes
https://www.youtube.com/watch?v=lYTx2...
Append to a file | Python | Castor Classes
https://www.youtube.com/watch?v=3SmQF...
Python for beginners:
https://www.youtube.com/watch?v=egq7Z...
Telegram: https://t.me/clcoding_python...
Append to a file | Python
Author May 27, 2020 Python No comments
Prerequisite:
File Handling | Python | Castor Classes
https://www.youtube.com/watch?v=-ENVe...
Writing to file in Python | Castor Classes
https://www.youtube.com/watch?v=lYTx2...
Python for beginners:
https://www.youtube.com/watch?v=egq7Z...
Telegram: https://t.me/clcoding_python
https://www.facebook.com/pirawenpython/
https://www.facebook.com/groups/pirawenpython/
...
Writing to file in Python
Author May 27, 2020 Python No comments
Prerequisite:
File Handling | Python | Castor Classes
https://www.youtube.com/watch?v=-ENVe...
Python for beginners:
https://www.youtube.com/watch?v=egq7Z...
Telegram: https://t.me/clcoding_python
https://www.facebook.com/pirawenpython/
https://www.facebook.com/groups/pirawenpython/
(adsbygoogle = window.adsbygoogle || []).push({});
...
Tuesday, 26 May 2020
Assembly Language

➤Each family of processes has its own set of instructions, the set of instructions are called machine instructions
➤A processor understands only machine level language instructions which are strings of ones and zeros however machine...
ThE NeaR FuTuRe

Python is a high-level programming language that is widely used in various kinds of programming activities. Python is known for its object-oriented and interpreted features which make it dynamic. Python enables distinct programming on both...
Monday, 25 May 2020
Learning Python: Powerful Object-Oriented Programming Kindle Edition by Mark Lutz (Author) pdf
Author May 25, 2020 Books, Python No comments

Get a comprehensive, in-depth introduction to the core Python language with this hands-on book. Based on author Mark Lutz’s popular training course, this updated fifth edition will help you quickly write efficient, high-quality code with Python....
Sunday, 24 May 2020
Logistic Regression in Python(part01) | python crash course_07
i am rider (iari) May 24, 2020 Python No comments

Logistic Regression in Python: part-01
Welcome to python crash course, Today we are going to start Logistic Regression. basically, in this post you will learn How to encoding data so let's start:
As the amount of available data, the strength...
Popular Posts
-
Explanation: List Initialization: colors = ["Red", "Yellow", "Orange"] A list named colors is created wit...
-
Step-by-Step Breakdown: Importing the array module import array as arr The array module is a built-in Python module that provides...
-
Execution: Function Call: calc( 5 , 5 , 1 , 8 ) args receives (5, 5, 1, 8), which is a tuple. Step 1: Count the Number of Argume...
-
Explanation of the Code: Creating an Empty Dictionary: personsAges = dict () This initializes an empty dictionary named personsAges....
-
Key Points: Local Scope of name The variable name is defined inside the function set_name(). This means name exists only within the...
-
Introduction to Data Science in Python: Course Review and Insights Python has become one of the most powerful and popular programming lang...
-
Explanation: import array as arr This imports the built-in array module with an alias arr. numbers = arr.array('f', [8, ...
-
Execution Flow: The first if(True) condition is True , so the code inside it runs. It prints "0" . Inside the first if bloc...
-
Introduction In today’s AI-driven world, developing a machine learning (ML) model is only the first step. The real challenge lies in deplo...
-
Let's analyze the code step by step: socialMedias = set () This initializes an empty set called socialMedias. socialMedias.add(...
Categories
100 Python Programs for Beginner
(96)
AI
(39)
Android
(24)
AngularJS
(1)
Api
(2)
Assembly Language
(2)
aws
(17)
Azure
(7)
BI
(10)
book
(4)
Books
(197)
C
(77)
C#
(12)
C++
(83)
Course
(67)
Coursera
(249)
Cybersecurity
(25)
Data Analysis
(2)
Data Analytics
(2)
data management
(11)
Data Science
(148)
Data Strucures
(8)
Deep Learning
(21)
Django
(16)
Downloads
(3)
edx
(2)
Engineering
(14)
Euron
(29)
Events
(6)
Excel
(13)
Factorial
(1)
Finance
(6)
flask
(3)
flutter
(1)
FPL
(17)
Generative AI
(11)
Google
(36)
Hadoop
(3)
HTML Quiz
(1)
HTML&CSS
(47)
IBM
(30)
IoT
(1)
IS
(25)
Java
(93)
Java quiz
(1)
Leet Code
(4)
Machine Learning
(85)
Meta
(22)
MICHIGAN
(5)
microsoft
(4)
Nvidia
(4)
Pandas
(4)
PHP
(20)
Projects
(29)
pyth
(1)
Python
(1027)
Python Coding Challenge
(454)
Python Quiz
(111)
Python Tips
(5)
Questions
(2)
R
(70)
React
(6)
Scripting
(1)
security
(3)
Selenium Webdriver
(4)
Software
(17)
SQL
(42)
UX Research
(1)
web application
(8)
Web development
(4)
web scraping
(2)