This tutorial help to create JSON file using python 3. I will get data from the rest API and write data into a JSON file. We will save it into the folder location. JSON (JavaScript Object Notation) is a popular data format used for representing structured data. This is a common data format for transmitting […]
Category: Python Tutorials
This page will have all tutorials which are related to python 3.
How To Consume Slack API Using Python
in this tutorial, I ll let you know How to access Slack API using python and flask. We’ll go through the free registration of slack user and get an access token. Slack APIs allow you to integrate complex services with Slack. The Slack Web API is an interface for querying information from and enacting change […]
Jenkins API Using Python
in this tutorial, I’ll learn How to access Jenkins API using python. Jenkins is providing an API interface to access all resources. We will use python-jenkins, It’s a third-party API package to access Jenkins rest API. There are two Python packages you can use for this task: What is Jenkins Jenkins is a very popular […]
Python isupper(), islower(), lower() and upper() methods
This python string tutorial help to learn some string methods(isupper(), islower(), lower() and upper()) with example.These methods are used to check string is uppercase, check string is lowercase, convert string to lowercase and string in uppercase.
Python List Comprehension
In this post, we will cover list comprehensions in python with examples. List comprehension is the process of making lists out of existing iterables.
Python List to String
This python tutorial help to convert a python list into a string. We’ll learn different ways to convert list items into the string.
Python f-string Format With Example
f-strings are string literals that begin with a f or F and contain curly braces that contain expressions that will be replaced with their values. At runtime, the expressions are evaluated. This method is very helpful in string formatting.
Different Ways to Reverse a String in Python
in this tutorial, I am going to tell you the number of ways to reverse a string using python 3. Python has no built-in mechanism for reversing a string. We’ll create a reverse string in a variety of methods.
How To Concatenate String in Python
in this post, We’ll learn how to combine two or more strings in python. You can also call this Python String Concatenation, or python string add. The String Concatenation allows us to join two strings together.
Python Replace String Using regex
This tutorial help to replace a character or substring using regex.Python’s re module help to regex with python.