Python
'Video thumbnail for Install Python in MacOS'
play_arrow
2:52
Install Python in MacOS
Install Python in MacOS

13K views · Mar 17, 2023 infallibletechie.com

1. Go to https://www.python.org/downloads/. 2. Click the Download Python x.xx.x button. The x.xx.x refers to the version number. Blog Post: https://www.infallibletechie.com/2023/03/how-to-install-python-in-macos.html

'Video thumbnail for Download Python and Install In Windows OS'
play_arrow
2:20
Download Python and Install In Windows OS
Download Python and Install In Windows OS

10K views · Mar 22, 2023 infallibletechie.com

1. Go to https://www.python.org/downloads/. 2. Click the Download Python x.xx.x button. The x.xx.x refers to the version number. Blog Post: https://www.infallibletechie.com/2023/03/how-to-download-python-and-install-in-windows-os.html

'Video thumbnail for Develop simple Python code and execute in MacOS'
play_arrow
4:22
Develop simple Python code and execute in MacOS
Develop simple Python code and execute in MacOS

69K views · Mar 24, 2023 infallibletechie.com

To execute Python code, Python should be installed. Install Python in MacOS. Use https://www.infallibletechie.com/2023/03/how-to-install-python-in-macos.html for steps and installation guide. To execute Python code, Python should be installed. Blog Post: https://www.infallibletechie.com/2023/03/how-to-develop-simple-python-code-and-execute-in-macos.html

'Video thumbnail for Develop simple Python code and execute in Windows OS'
play_arrow
3:23
Develop simple Python code and execute in Windows OS
Develop simple Python code and execute in Windows OS

161K views · Mar 27, 2023 infallibletechie.com

To execute Python code, Python should be installed. Install Python in Windows OS. Use https://www.infallibletechie.com/2023/03/how-to-download-python-and-install-in-windows-os.html for steps and installation guide. To execute Python code, Python should be installed. Blog Post: https://www.infallibletechie.com/2023/03/how-to-develop-simple-python-code-and-execute-in-windows-os.html

'Video thumbnail for Python Programming Basics'
play_arrow
9:40
Python Programming Basics
Python Programming Basics

11K views · Mar 29, 2023 infallibletechie.com

Python Programming Basics are Reserved Keywords, Constants, Variable, type() function, input() function and comments statements. Blog Post: https://www.infallibletechie.com/2023/03/python-programming-basics.html

'Video thumbnail for if else Statement in Python'
play_arrow
4:29
if else Statement in Python
if else Statement in Python

3K views · Apr 3, 2023 infallibletechie.com

Indentation plays a vital role in Python if else statements. Blog Post: https://www.infallibletechie.com/2023/03/if-else-statement-in-python.html

'Video thumbnail for else if Statement in Python'
play_arrow
4:40
else if Statement in Python
else if Statement in Python

27K views · Apr 5, 2023 infallibletechie.com

Indentation plays an important role in else if Statement in Python. elif refers to else if statement in Python. Blog Post: https://www.infallibletechie.com/2023/03/else-if-statement-in-python.html

'Video thumbnail for try and catch statements in Python'
play_arrow
5:22
try and catch statements in Python
try and catch statements in Python

12K views · Apr 7, 2023 infallibletechie.com

try and except keywords are used in Python for try and catch. Indentation plays an important role in try and catch statements in Python. Blog Post: https://www.infallibletechie.com/2023/03/try-and-catch-statements-in-python.html

'Video thumbnail for Functions in Python'
play_arrow
8:33
Functions in Python
Functions in Python

10K views · Apr 10, 2023 infallibletechie.com

Functions are used to store and reuse code. def statement is used to define the Functions. Built-In or Pre-defined Functions in Python: max, min, print, input, float, int, etc. are Built-In Python functions. Custom Functions in Python: Custom Functions are user defined functions. Blog Post: https://www.infallibletechie.com/2023/03/functions-in-python.html

'Video thumbnail for Loops or Iterations in Python'
play_arrow
9:42
Loops or Iterations in Python
Loops or Iterations in Python

51K views · Apr 12, 2023 infallibletechie.com

while loop: While loop executes repeatedly the block of code until the condition becomes false. break statement: break statement is used to end or terminate the loop. for loop: for loop is used to iterate or repeat executing the same block of code with a known number of times. Blog Post: https://www.infallibletechie.com/2023/03/loops-or-iterations-in-python.html

'Video thumbnail for String Methods in Python'
play_arrow
11:01
String Methods in Python
String Methods in Python

16K views · Apr 14, 2023 infallibletechie.com

Python programming have several String methods. Check the following for some important String Methods in Python. Blog Post: https://www.infallibletechie.com/2023/03/string-methods-in-python.html

'Video thumbnail for Handling Files in Python'
play_arrow
7:22
Handling Files in Python
Handling Files in Python

8K views · Apr 17, 2023 infallibletechie.com

open() and read() methods play a vital role in handling files in Python. Blog Post: https://www.infallibletechie.com/2023/03/handling-files-in-python.html

'Video thumbnail for Collection or List in Python Programming'
play_arrow
13:40
Collection or List in Python Programming
Collection or List in Python Programming

13K views · Apr 19, 2023 infallibletechie.com

A collection or list allows us to store multiple values in a variable. Blog Post: https://www.infallibletechie.com/2023/03/collection-or-list-in-python-programming.html

'Video thumbnail for Dictionaries in Python'
play_arrow
5:56
Dictionaries in Python
Dictionaries in Python

187K views · Apr 24, 2023 infallibletechie.com

Dictionaries in Python are used for data collection. They are similar to map data type in other programming languages where we use key and value pairs. dict(): dict() is used to define the Dictionaries in Python. Example: colorsValues = dict(); colorsValues[ 1 ] = 'Red'; colorsValues[ 2 ] = 'Green'; colorsValues[ 3 ] = 'blue'; print( colorsValues[ 2 ] ); Blog Post: https://www.infallibletechie.com/2023/04/dictionaries-in-python.html

'Video thumbnail for Parse Salesforce Login SOAP Response in Python'
play_arrow
4:10
Parse Salesforce Login SOAP Response in Python
Parse Salesforce Login SOAP Response in Python

513 views · Apr 29, 2023 infallibletechie.com

RegEx(Regular Expression) can be used to parse to parse Salesforce Login SOAP Response in Python. Blog Post: https://www.infallibletechie.com/2023/04/how-to-parse-salesforce-login-soap-response-in-python.html

'Video thumbnail for Get URL without path in Python'
play_arrow
2:50
Get URL without path in Python
Get URL without path in Python

5K views · May 7, 2023 infallibletechie.com

RegEx(Regular Expression) can be used to get URL without path in Python. Blog Post: https://www.infallibletechie.com/2023/05/how-to-get-url-without-path-in-python.html

'Video thumbnail for Tuples in Python'
play_arrow
3:49
Tuples in Python
Tuples in Python

1K views · May 12, 2023 infallibletechie.com

Tuples in Python Tuples in Python are similar to list data type. It makes use of ( and ). List uses [ and ]. The significant difference is, once we create the Tuples, we cannot modify their contents(Immutable). If we try to change the content, it will throw an error at run time. They uses less memory or storage when compared to the list. So, they are more efficient than list. list supports sort() method. But, Tuples doesn't support sort() method. Blog Post: https://www.infallibletechie.com/2023/05/tuples-in-python.html

'Video thumbnail for Regular Expressions in Python'
play_arrow
5:22
Regular Expressions in Python
Regular Expressions in Python

56K views · May 18, 2023 infallibletechie.com

Regular Expressions in Python make life easier in programming. "import re" should be used to use regular expressions in Python. re.findall() and re.search() are used. import re should be used to make use of Regular Expressions in Python. Blog Post: https://www.infallibletechie.com/2023/05/regular-expressions-in-python.html

'Video thumbnail for Sockets in Python'
play_arrow
7:18
Sockets in Python
Sockets in Python

11K views · Jun 17, 2023 infallibletechie.com

Python programming has built-in libraries for TCP Sockets. So, it makes life easier. Blog Post: https://www.infallibletechie.com/2023/06/sockets-in-python.html

'Video thumbnail for urllib in Python'
play_arrow
4:16
urllib in Python
urllib in Python

24K views · Jun 25, 2023 infallibletechie.com

urllib is a package in Python programming that can be used working with the URLs. urllib.request will be used for opening and reading URLs. urllib.error will be containing the exceptions raised by urllib.request. urllib.parse is used for parsing the URLs. Blog Post: https://www.infallibletechie.com/2023/06/urllib-in-python.html

'Video thumbnail for Object Oriented Programming Classes and Methods in Python'
play_arrow
5:08
Object Oriented Programming Classes and Methods in Python
Object Oriented Programming Classes and Methods in Python

5K views · Jul 1, 2023 infallibletechie.com

Python programming also supports object-oriented classes and methods. Blog Post: https://www.infallibletechie.com/2023/06/object-oriented-programming-classes-and-methods-in-python.html

'Video thumbnail for Python in Visual Studio Code'
play_arrow
2:38
Python in Visual Studio Code
Python in Visual Studio Code

10K views · Feb 7, 2025 infallibletechie.com

We can execute Python from Visual Studio Code Application. Blog Post: https://www.infallibletechie.com/2025/02/python-in-visual-studio-code.html

'Video thumbnail for Python in Visual Studio Code'
play_arrow
2:38
Python in Visual Studio Code
Python in Visual Studio Code

10K views · Feb 7, 2025 infallibletechie.com

We can execute Python from Visual Studio Code Application. Blog Post: https://www.infallibletechie.com/2025/02/python-in-visual-studio-code.html

'Video thumbnail for Invoke Salesforce Messaging for Web REST API using Python'
play_arrow
8:55
Invoke Salesforce Messaging for Web REST API using Python
Invoke Salesforce Messaging for Web REST API using Python

583 views · Feb 14, 2025 infallibletechie.com

Salesforce Messaging for Web REST API helps us to connect to the Messaging Services via REST API. Check the following link for getting started with the Salesforce Messaging for Web REST API. https://www.infallibletechie.com/2024/11/salesforce-messaging-for-in-app-and-web-rest-api.html Blog Post: https://www.infallibletechie.com/2025/02/invoke-salesforce-messaging-for-web-rest-api-using-python.html

'Video thumbnail for Invoke Salesforce Messaging for Web REST API using Python'
play_arrow
8:55
Invoke Salesforce Messaging for Web REST API using Python
Invoke Salesforce Messaging for Web REST API using Python

583 views · Feb 14, 2025 infallibletechie.com

Salesforce Messaging for Web REST API helps us to connect to the Messaging Services via REST API. Check the following link for getting started with the Salesforce Messaging for Web REST API. https://www.infallibletechie.com/2024/11/salesforce-messaging-for-in-app-and-web-rest-api.html Blog Post: https://www.infallibletechie.com/2025/02/invoke-salesforce-messaging-for-web-rest-api-using-python.html