Pages

Showing posts with label Python. Show all posts
Showing posts with label Python. Show all posts

Friday, May 15, 2020

Python Program to Print Hello world!

1. Introduction


In this tutorial, You'll learn a beginner's Python program to print Hello World program. The example program can be executed from python IDE or shell prompt.

You can download the latest python version from the official website here.

You no need prior experience or knowledge on the python concepts. Because this is the first program for beginners. So, You'll get the basics of python scripting here.

Python Program to Print Hello world!-min

Print hello world! in Python Programming


Friday, November 22, 2019

Python - TypeError: Object of type 'int64' is not JSON serializable (Works for all data types - Integer, Float, Array, etc)

1. Overview


In this tutorial, You will be learning how to solve the problem in python "TypeError: Object of type 'int64' is not JSON serializable" and "TypeError: (Integer) is not JSON serializable". These two errors come into existence when we working with JSON Serialization. Solutions shown in this article will work for apart from the int or int64 type such as float, array and etc.

Below is the scenario where my friend faced the problem.

Python TypeError Object of type  int64 is not JSON serializable