Showing posts with the label PythonShow all

Python Exception : ValueError

Python Exception  : ValueError  A ValueError in Python occurs when a function receives an argument of the right type but an inappropriate value. Lets see with an example: 🧪 Converting a string input to an integer num = int ( "Hello World !" ) 🔍 What happens? This will raise a ValueError because "He…

Read more

JSON with Python

JSON (JavaScript object notation) Its syntax is derived from JavaScript object notation syntax. JSON is a syntax for storing and exchanging data. Few important properties about JSON: a) Data is in name/value pairs or key/value pairs b) Data is separated by commas c) Curly braces hold objects d) Square brackets hold ar…

Read more

Access JIRA API via bearer token using Python code

How to access the JIRA API via bearer token using Python code? JIRA is a project management tool that helps teams track bugs, releases, plan projects, etc. There are times when the team needs to access the release and bug data to create custom dashboards to show the trends, like bug trends and …

Read more