This tutorial help to find a variable data type in python, we’ll also learn here how to find the variable datatype and instance type of an object using python.The python has built-in method type() and isinstance() to check datatype for a variable/object.
Category: Python Tutorials
This page will have all tutorials which are related to python 3.
How To Load Json file Using Python
in this tutorial, I’ll demonstrate about load JSON file in python. You can also learn about python json.load() and json.loads() methods to read JSON data from a file and String.
Merging pdf Files Using Python
in this python pdf tutorial, We’ll cover pdf merging functionality using PyPDF2.You can merge one or more pdf files into a single pdf file. We’ll use PdfFileMerger class to merge pdf files.
Extract Text From PDF File Using Python
This python tutorial help to extract data from pdf file using python. We’ll use the PyPDF2 module that is widely used to access & manipulate PDF files in Python. We’ll use PdfFileReader class to extract information from pdf files.
Write Text File Using Python 3
in this python tutorial, I’ll show you Writing a text file using python. Python has built-in file writing method to open and write content into the file. There are two sorts of files that can be used to write: text files and binary files. We ll following steps to write a file in python: You […]
How To Read Write Yaml File in Python3
This tutorial will show you how to read and write YAML files in Python. For reading and writing data from and to YAML files, I use the ruamel.yaml python libs. YAML stands for Yet Another Markup Language. The easiest and purest method without relying on C headers is PyYaml, which can be installed by the following […]
How To Match String Item into List Python
This tutorial help to find python list item contains a string. I’ll walk you through the many circumstances for finding items in a Python list.. I have also shared How To Find Substring and Character into String. I’ve given an example utilizing the find() method, as well as the operator and index functions. You can […]
How To Compare Python Two Lists
in this python tutorial, I’ll show you how to compare two python lists using different ways. We’ll use sort and compare and member method check two lists is identical or not.
How to Concatenate Two List in Python
in this tutorial, We’ll concatenate two lists in python in different ways.We’ll learn how to concatenate lists using ‘+’, ‘*’, extend() etc.
Python list map Example
This python tutorial help to understand python list map with example. Python provides map() method to apply a function to all the items of iterable and return map objects. This help to do some task on the all items of the list. You can pass one or more iterable to the map() function.