Python Coding (CLCODING)
@pythonclcoding
9.29K
subscribers
1.66K
photos
4
videos
49
files
1.5K
links
Learn Python to automate your things. We are here to support you. Ask your question
Reach us - info@clcoding.com
https://whatsapp.com/channel/0029Va5BbiT9xVJXygonSX0G
Download Telegram
Join
Python Coding (CLCODING)
9.29K subscribers
Python Coding (CLCODING)
https://youtu.be/duMek025R7E
YouTube
List Traversal using while loop & break statement | Python | Castor Classes
Code used in the video is given in the comment section.
Python for beginners:
https://www.youtube.com/watch?v=egq7ZLqtbcI&list=PLNhFkFk6qEgIq3lcbmxWIBFjEcq4lwRyk
Web
🌐
http://www.clcoding.com/
Telegram: https://t.me/clcoding_python
https://www.faceboo…
Python Coding (CLCODING)
https://youtu.be/O9DMcBkkZFc
YouTube
Nested List & Matrix | List in Python | Part 7 | Castor Classes
Code for taking matrix input is given in the comment section.
Python for beginners:
https://www.youtube.com/watch?v=egq7ZLqtbcI&list=PLNhFkFk6qEgIq3lcbmxWIBFjEcq4lwRyk
Web
🌐
http://www.clcoding.com/
Telegram: https://t.me/clcoding_python
https://www.f…
Python Coding (CLCODING)
https://youtu.be/Am1vXKPHdgA
YouTube
String Immutability & count method | Python | Castor Classes
Topics discussed:
1)count method
2)String immutability
Python for beginners:
https://www.youtube.com/watch?v=egq7ZLqtbcI&list=PLNhFkFk6qEgIq3lcbmxWIBFjEcq4lwRyk
Web
🌐
http://www.clcoding.com/
Telegram: https://t.me/clcoding_python
https://www.facebook…
Python Coding (CLCODING)
https://youtu.be/6aMoiDdf1sE
YouTube
Tuple in Python | Part 2 | Castor Classes
Topics discussed in this video:
1)Accessing Elements of a Tuple
2)Creating New Tuples from Existing Tuples
3)Iterating Over Tuples
4)length of a Tuple
5)count how many times a specified value appears in a Tuple
6)find out the (first) index of a value in a…
Python Coding (CLCODING)
https://youtu.be/kHovydkdOME
YouTube
Checking a number is Odd or Even using Bitwise Operators | Python | Castor Classes
Prerequisite:
Bitwise Operation in Python | Castor Classes
https://www.youtube.com/watch?v=mqkBM9Nwy3k
Python for beginners:
https://www.youtube.com/watch?v=egq7ZLqtbcI&list=PLNhFkFk6qEgIq3lcbmxWIBFjEcq4lwRyk
Web
🌐
http://www.clcoding.com/
Telegram: ht…
Python Coding (CLCODING)
https://youtu.be/ol4VWFLjd8Y
YouTube
Turn off the rightmost set bit | Python | Castor Classes
Question:
Write a program that unsets the rightmost set bit of an integer.
Input: 12
Output: 8
Input: 7
Output: 6
Simple code:
n=int(input());
print(n & (n-1))
Prerequisite:
Data Type Conversion | Python | Castor Classes
https://www.youtube.co…
Python Coding (CLCODING)
https://www.clcoding.com/2020/04/relationship-between-binary.html
Clcoding
Relationship between binary representation of n & n-1 | Python
Python Coding (CLCODING)
https://www.youtube.com/watch?v=erp_j-Zt_6E
YouTube
Practice problem on String in Python | Castor Classes
Python for beginners:
https://www.youtube.com/watch?v=egq7ZLqtbcI&list=PLNhFkFk6qEgIq3lcbmxWIBFjEcq4lwRyk
Web
🌐
http://www.clcoding.com/
Telegram: https://t.me/clcoding_python
https://www.facebook.com/pirawenpython/
https://www.facebook.com/groups/pirawenpython/
Python Coding (CLCODING)
https://www.youtube.com/watch?v=mKpg62zVlEc
YouTube
Counting Elements | Python | Castor Classes
Code is given in the comment section.
Python for beginners:
https://www.youtube.com/watch?v=egq7ZLqtbcI&list=PLNhFkFk6qEgIq3lcbmxWIBFjEcq4lwRyk
Web
🌐
http://www.clcoding.com/
Telegram: https://t.me/clcoding_python
https://www.facebook.com/pirawenpython/…
Python Coding (CLCODING)
https://youtu.be/ZMMXO0bKbC4
YouTube
Rotate String | Practice Problem on String | Python | Castor Classes
Code is given in the comment section.
Prerequisites:
Strings in Python | Python | Castor Classes
https://www.youtube.com/watch?v=egq7ZLqtbcI
Strings in Python | Part 2 | Castor Classes
https://www.youtube.com/watch?v=Vnt4XUF5pP0
Important Links:
https:…
Python Coding (CLCODING)
Python Input() Function >>
https://www.clcoding.com/2020/05/python-input-function.html
Clcoding
Python Input() Function
Python provides us the facility to take input from user using Input( ) function. This function prompts the user to input a value.
Python Coding (CLCODING)
https://youtu.be/XCrzkclmgaM
YouTube
Move Zeroes | Python | Castor Classes
Code is given in the comment section.
Python for beginners:
https://www.youtube.com/watch?v=egq7ZLqtbcI&list=PLNhFkFk6qEgIq3lcbmxWIBFjEcq4lwRyk
Web
🌐
http://www.clcoding.com/
Telegram: https://t.me/clcoding_python
https://www.facebook.com/pirawenpython/…
Python Coding (CLCODING)
https://youtu.be/W1vPQRMpF5k
YouTube
Last Stone Weight | Python | Castor Classes
Code is given in the comment section.
Python for beginners:
https://www.youtube.com/watch?v=egq7ZLqtbcI&list=PLNhFkFk6qEgIq3lcbmxWIBFjEcq4lwRyk
Web
🌐
http://www.clcoding.com/
Telegram: https://t.me/clcoding_python
https://www.facebook.com/pirawenpython/…
Python Coding (CLCODING)
https://youtu.be/e_leg-OsLyY
YouTube
Prime Number of Set Bits in Binary Representation | Python | Castor Classes
Prerequisite:
Brian Kernighan’s Algorithm | Python | Castor Classes
https://www.youtube.com/watch?v=DUSCdZPHFe4
Python for beginners:
https://www.youtube.com/watch?v=egq7ZLqtbcI&list=PLNhFkFk6qEgIq3lcbmxWIBFjEcq4lwRyk
Web
🌐
http://www.clcoding.com/
Telegram:…
Python Coding (CLCODING)
https://youtu.be/DUSCdZPHFe4
Python Coding (CLCODING)
https://www.clcoding.com/2020/05/escape-sequence-in-python.html
Clcoding
Escape Sequence in Python
Escape sequences are control character used to move the cursor and print characters such as ',".\ and so on.
Python Coding (CLCODING)
https://youtu.be/ggmBT5sjz8k
Python Coding (CLCODING)
https://youtu.be/mKpg62zVlEc
Python Coding (CLCODING)
https://youtu.be/ViDbilbKPEI
Python Coding (CLCODING)
https://youtu.be/KT7ZzzIZ9ew
YouTube
Separate 0’s and 1’s in an array | Python | Castor Classes
Code is given in the comment section.
Python for beginners:
https://www.youtube.com/watch?v=egq7ZLqtbcI&list=PLNhFkFk6qEgIq3lcbmxWIBFjEcq4lwRyk
Web
🌐
http://www.clcoding.com/
Telegram: https://t.me/clcoding_python
https://www.facebook.com/pirawenpython/…