Saturday, 25 April 2020
The Python Workbook: A Brief Introduction with Exercises and Solutions Hardcover – 4 February 2015 by Ben Stephenson (Author)
Author April 25, 2020 Books, Python No comments
Undergraduate students undergoing their first programming course and wishing to enhance their programming abilities will find the exercises and solutions provided in this book to be ideal for their needs.
Buy: The Python Workbook: A Brief Introduction with Exercises and Solutions Hardcover – 4 February 2015 by Ben Stephenson (Author)
Power of a number | Python | Castor Classes
Author April 25, 2020 Python No comments
Web ๐http://www.clcoding.com/
Telegram: https://t.me/clcoding_python
https://www.facebook.com/pirawenpython/
https://www.facebook.com/groups/piraw...
Friday, 24 April 2020
Number Data Type | Python | Castor Classes
Author April 24, 2020 Python No comments
Reverse Words in a String(Part 2) | GeeksForGeeks | Python | Castor Classes
Author April 24, 2020 Python No comments
Reverse Words in a String III (Part 1) | LeetCode | Python | Castor Classes
Author April 24, 2020 Python No comments
class Solution:
def reverseWords(self, s: str) -> str:
e=s.split(" ");
output=[];
for i in e:
a=list(i);
a.reverse();
es="".join(a);
output.append(es);
return " ".join(output);
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...
Check if a string is Isogram or not | Python | Castor Classes
Author April 24, 2020 Python No comments
Replace all 0's with 5 | Python | Castor Classes
Author April 24, 2020 Python No comments
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...
Convert a word to list of characters using list & Palindrome | Python | Castor Classes
Author April 24, 2020 Python No comments
class Solution:
def isPalindrome(self, x: int) -> bool:
e=str(x);
a=list(e);
a.reverse();
w="".join(a);
if(e==w):
return True;
else:
return False;
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... Single Number III | LeetCode | Practice Problem on List | Python | Castor Classes https://www.youtube.com/watch?v=8JEUM... 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 over a list & string | List in Python | Part 4 | Castor Classes https://www.youtube.com/watch?v=4Zrfk... Convert list to string | List in Python | Part 5 | Castor Classes https://www.youtube.com/watch?v=mLHOF... Python for beginners: https://www.youtube.com/watch?v=egq7Z...
Thursday, 23 April 2020
Single Number III | LeetCode | Practice Problem on List | Python | Castor Classes
Author April 23, 2020 Python No comments
Single Number II | Practice Problem on List | Python | Castor Classes
Author April 23, 2020 Python No comments
Single Number | Practice Problem on List | Python | Castor Classes
Author April 23, 2020 Python No comments
Convert list to string | List in Python | Part 5 | Castor Classes
Author April 23, 2020 Python No comments
Iterate over a list & string | List in Python | Part 4 | Castor Classes
Author April 23, 2020 Python No comments
List in Python | Part 3 | Castor Classes
Author April 23, 2020 No comments
List in Python | Part 2 | Castor Classes
Author April 23, 2020 Python No comments
1)pop operation on list
2)del
3)clear
4)Joining two lists in python
Tuesday, 21 April 2020
Strings in Python | Part 3 | Castor Classes
Author April 21, 2020 Python No comments
1)Escape Sequences
2)Raw String
3)Triple-quoted strings
Prerequisites:
Strings in Python | Python | Castor Classes
Strings in Python | Part 2 | Castor Classes
Rotate String | Practice Problem on String | Python | Castor Classes
Monday, 20 April 2020
Rotate String | Practice Problem on String | Python | Castor Classes
Author April 20, 2020 Python No comments
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:
A=A+A;
if( B in A):
return True;
else:
return False;
Saturday, 11 April 2020
Tuesday, 7 April 2020
Hadoop Tutorial for Beginners | Hadoop Tutorial | Big Data Hadoop Tutorial for Beginners | Hadoop
Author April 07, 2020 Hadoop No comments
-------------------------------------------------------------------------------------------------------------------------------------------------------
The topics that will covered in the course include:
1. Introduction to Big Data - 03:03
2. ETL (Extract-Transform-Load) - 18:10
3. Introduction to Hadoop - 32:38
4. Distributed Computing - 46:20
5. Hadoop Architecture - 54:52
6. HDFS File Storage - 01:01:51
7. Introduction to Oozie and HDFS Processing - 01:15:01
8. Hadoop Clusters - 01:20:26
9. Hadoop Ecosystem - 01:39:09
10. Introduction to MapReduce - 02:07:18
11. Understanding MapReduce with an example - 02:20:32
12. MapReduce Practical Example - 02:37:33
13. Comparing MapReduce programming with Java - 02:49:07
14. MapReduce Hands On Word Count Program - 02:53:59
15. Word Count Program Code - 03:14:09
16. Apache Hadoop YARN - 03:54:37
Popular Posts
-
Exploring Python Web Scraping with Coursera’s Guided Project In today’s digital era, data has become a crucial asset. From market trends t...
-
What does the following Python code do? arr = [10, 20, 30, 40, 50] result = arr[1:4] print(result) [10, 20, 30] [20, 30, 40] [20, 30, 40, ...
-
Explanation: Tuple t Creation : t is a tuple with three elements: 1 → an integer [2, 3] → a mutable list 4 → another integer So, t looks ...
-
What will the following code output? a = [1, 2, 3] b = a[:] a[1] = 5 print(a, b) [1, 5, 3] [1, 5, 3] [1, 2, 3] [1, 2, 3] [1, 5, 3] [1, 2, ...
-
What will the following Python code output? What will the following Python code output? arr = [1, 3, 5, 7, 9] res = arr[::-1][::2] print(re...
-
Through a recent series of breakthroughs, deep learning has boosted the entire field of machine learning. Now, even programmers who know c...
-
What will the following code output? import pandas as pd data = {'Name': ['Alice', 'Bob'], 'Age': [25, 3...
-
What will the output of the following code be? def puzzle(): a, b, *c, d = (10, 20, 30, 40, 50) return a, b, c, d print(puzzle()) ...
-
Step-by-Step Explanation: Dictionary Creation: my_dict = {'a': 1, 'b': 2, 'c': 3} A dictionary named my_dict is crea...
-
What will be the output of the following code? import numpy as np arr = np.array([1, 2, 3, 4]) result = arr * arr[::-1] print(result) [1, ...