Saturday, 25 April 2020

Data Type Conversion | Python | Castor Classes

Power of a number | Python | Castor Classes https://www.youtube.com/watch?v=omFAv... Python for beginners: https://www.youtube.com/watch?v=egq7Z... Web 🌐http://www.clcoding.com/ Telegram: https://t.me/clcoding_python https://www.facebook.com/pirawenpython/ https://www.facebook.com/groups/piraw... (adsbygoogle = window.adsbygoogle...

The Python Workbook: A Brief Introduction with Exercises and Solutions Hardcover – 4 February 2015 by Ben Stephenson (Author)

While other textbooks devote their pages to explaining introductory programming concepts, The Python Workbook focuses exclusively on exercises, following the philosophy that computer programming is a skill best learned through experience and...

Power of a number | Python | Castor Classes

Python for beginners: https://www.youtube.com/watch?v=egq7Z... Web 🌐http://www.clcoding.com/   Telegram: https://t.me/clcoding_python  https://www.facebook.com/pirawenpython/  https://www.facebook.com/groups/piraw... (adsbygoogle = window.adsbygoogle || []).push({}); (adsbygoogle = window.adsbygoogle ||...

Friday, 24 April 2020

Number Data Type | Python | Castor Classes

Python for beginners: https://www.youtube.com/watch?v=egq7Z... Web 🌐http://www.clcoding.com/ Telegram: https://t.me/clcoding_python https://www.facebook.com/pirawenpython/ https://www.facebook.com/groups/piraw... (adsbygoogle = window.adsbygoogle || []).push({}); (adsbygoogle = window.adsbygoogle || []).push({});...

Reverse Words in a String(Part 2) | GeeksForGeeks | Python | Castor Classes

Code: t=int(input()); ie=0; while (ie<t): a=input(); e=a.split("."); output=[]; for i in e: a=list(i); a.reverse(); es="".join(a); output.append(es); print(".".join(output)); ie=ie+1; Prerequisites: Reverse Words in a String III | LeetCode | Python | Castor Classes https://www.youtube.com/watch?v=m067u... Python...

Reverse Words in a String III (Part 1) | LeetCode | Python | Castor Classes

Code: class Solution:     def reverseWords(self, s: str) -> str:         e=s.split(" ");         output=[];         for i in e:             a=list(i);             a.reverse();            ...

Replace all 0's with 5 | Python | Castor Classes

Code: n=int(input("Enter the number:")); s=str(n); g=""; for i in s:     if(i=='0'):         g=g+'5';     else:         g=g+i; t=int(g); print(t)         Python for beginners: https://www.youtube.com/watch?v=egq7Z... (adsbygoogle = window.adsbygoogle || []).push({}); ...

Convert a word to list of characters using list & Palindrome | Python | Castor Classes

Code: class Solution:     def isPalindrome(self, x: int) -> bool:         e=str(x);         a=list(e);         a.reverse();         w="".join(a);         if(e==w):             return True;      ...

Thursday, 23 April 2020

Single Number III | LeetCode | Practice Problem on List | Python | Castor Classes

Code is given in the comment section. Prerequisite: Single Number | Practice Problem on List | Python | Castor Classes: https://www.youtube.com/watch?v=mIQBl... Single Number II | Practice Problem on List | Python | Castor Classes https://www.youtube.com/watch?v=qnBML... List in Python | Part 1 | Castor Classes: https://www.youtube.com/watch?v=P2ogQ... List...

Single Number II | Practice Problem on List | Python | Castor Classes

Code is given in the comment section. Prerequisite: Single Number | Practice Problem on List | Python | Castor Classes: https://www.youtube.com/watch?v=mIQBl... List in Python | Part 1 | Castor Classes: https://www.youtube.com/watch?v=P2ogQ... List in Python | Part 2 | Castor Classes: https://www.youtube.com/watch?v=vNxxQ... List in Python |...

Single Number | Practice Problem on List | Python | Castor Classes

Code: n=[2,2,1]; m=0; for i in n: if(n.count(i)%2!=0): m=i; break; print(m) Prerequisite: List in Python | Part 1 | Castor Classes: https://www.youtube.com/watch?v=P2ogQ... List in Python | Part 2 | Castor Classes: https://www.youtube.com/watch?v=vNxxQ... List in Python | Part 3 | Castor Classes https://www.youtube.com/watch?v=aUfow... Iterate...

Convert list to string | List in Python | Part 5 | Castor Classes

In this video , I have discussed , how you can convert a list to a string Prerequisite: List in Python | Part 1 | Castor Classes: https://www.youtube.com/watch?v=P2ogQ... List in Python | Part 2 | Castor Classes: https://www.youtube.com/watch?v=vNxxQ... List in Python | Part 3 | Castor Classes https://www.youtube.com/watch?v=aUfow... Iterate...

Iterate over a list & string | List in Python | Part 4 | Castor Classes

In this video , I have discussed , how you can traverse in a list and string & how to convert a string to a list using .split method. Prerequisite: List in Python | Part 1 | Castor Classes: https://www.youtube.com/watch?v=P2ogQ... List in Python | Part 2 | Castor Classes: https://www.youtube.com/watch?v=vNxxQ... List in Python | Part 3 | Castor...

List in Python | Part 3 | Castor Classes

Prerequisite: List in Python | Part 1 | Castor Classes: https://www.youtube.com/watch?v=P2ogQ... List in Python | Part 2 | Castor Classes: https://www.youtube.com/watch?v=vNxxQ... Python for beginners: https://www.youtube.com/watch?v=egq7Z... (adsbygoogle = window.adsbygoogle || []).push({}); (adsbygoogle = window.adsbygoogle...

List in Python | Part 2 | Castor Classes

Topics discussed in this video:1)pop operation on list2)del 3)clear4)Joining two lists in python Prerequisite: List in Python | Part 1 | Castor Classes: https://www.youtube.com/watch?v=P2ogQ... Learn Python from basics: https://www.youtube.com/watch?v=egq7Z... (adsbygoogle = window.adsbygoogle || []).push({}); (adsbygoogle...

List in Python | Part 1 | Castor Classes

Topics Discussed in this video: 1)Define a list in python 2)Index in list 3)Slicing of list 4)Mutation in list 5)length calculation in list 6)append in list 7)insert in the list 8)remove an element from a list (adsbygoogle = window.adsbygoogle || []).push({}); (adsbygoogle = window.adsbygoogle || []).push({})...

Tuesday, 21 April 2020

Strings in Python | Part 3 | Castor Classes

Topics covered in this video: 1)Escape Sequences 2)Raw String 3)Triple-quoted strings Prerequisites: Strings in Python | Python | Castor ClassesStrings in Python | Part 2 | Castor Classes Rotate String | Practice Problem on String | Python | Castor Classes (adsbygoogle = window.adsbygoogle || []).push({}); (adsbygoogle = window.adsbygoogle...

Monday, 20 April 2020

Rotate String | Practice Problem on String | Python | Castor Classes

Prerequisites: Strings in Python | Python | Castor Classes Strings in Python | Part 2 | Castor Classes Code: class Solution:     def rotateString(self, A: str, B: str) -> bool:         if(len(A)!=len(B)):             return False;         else:    ...

Strings in Python | Part 2 | Castor Classes

Topics discussed in this video: 1)How to create a string in Python 2)String Concatenation 3) Multiplication of  a string with an integer 4)How to use escape character in string (adsbygoogle = window.adsbygoogle || []).push({}); (adsbygoogle = window.adsbygoogle || []).push({});...

Saturday, 11 April 2020

Strings in Python | Python | Castor Classes

Topics discussed in this video: 1)How to create a string in Python 2)String Concatenation 3) Multiplication of  a string with an integer 4)How to use escape character in the string (adsbygoogle = window.adsbygoogle || []).push({}); (adsbygoogle = window.adsbygoogle || []).push({}...

Tuesday, 7 April 2020

Hadoop Tutorial for Beginners | Hadoop Tutorial | Big Data Hadoop Tutorial for Beginners | Hadoop

Data Analysts and Hadoop experts are in high demand. The Big Data and Data Analytics industry is growing fast and wide, with a growth rate of 23% through 2026 and average salaries of $85,000. IT mavens like Google, Amazon and IBM as well as growing start-ups are always in search of Big Data experts. So we have come up with a tutorial on Apache Hadoop...

Saturday, 7 December 2019

Python Vs R for Data Science - One Clear Winner

This video titled "Python Vs R for Data Science One Clear Winner" explains and compare both R and Python language on seven parameters when it comes to machine learning. Although both of these languages have their own strengths and weakness yet we will choose a clear winner based on these parameters. (adsbygoogle = window.adsbygoogle ||...

Sunday, 3 November 2019

Popular Posts

Categories

100 Python Programs for Beginner (98) AI (40) Android (24) AngularJS (1) Api (2) Assembly Language (2) aws (17) Azure (7) BI (10) book (4) Books (198) C (77) C# (12) C++ (83) Course (67) Coursera (251) Cybersecurity (25) Data Analysis (3) Data Analytics (3) data management (11) Data Science (149) 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 (1055) Python Coding Challenge (461) Python Quiz (128) Python Tips (5) Questions (2) R (70) React (6) Scripting (3) security (3) Selenium Webdriver (4) Software (17) SQL (42) UX Research (1) web application (8) Web development (4) web scraping (2)

Followers

Python Coding for Kids ( Free Demo for Everyone)