
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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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