Python Programming

Python is a popular high-level programming language used for developing a variety of applications, including web development, data analysis, artificial intelligence, and scientific computing. It is known for its simplicity, readability, and ease of use, making it an excellent language for both beginners and experienced programmers. In this article, we’ll cover the basics of Python … Read more

Learn Python – Python Tutorial for Beginner

Python Programming is a powerful multi purpose programming language. This is created by Guido van Rossum. Python is a high-level programming language. which is used for web development (server-side), software development, mathematics, system scripting, etc. It has very simple and easy to learn, making it the perfect language for someone trying to learn computer programming … Read more

JavaScript / jQuery Calling Rest Api Example

Calling REST API from JavaScript/jQuery. Through this tutorial, i am going to show you how to call rest APIs using javaScript/jquery on your web applications or web pages. In this tutorial, i will call google news apis using jQuery/javascript. So, Click on the link given below. https://newsapi.org/docs/get-started and get api key of google news api. … Read more

JavaScript Get Element By id, name, class, tag value

To access the dom elements by id, class, name, tag, attribute and value; In this tutorial. i am going to show you how to get HTML elements id, name, tag, class, attribute, value in JavaScript. Using the getElementById(), getElementsByClassName(), getElementByName(), getElementsByTagName(); you can get element values with id, class, name, tag, attribute and value. JavaScript … Read more

MySQL TIME_TO_SEC() Function

MySQL TIME_TO_SEC() function; In this tutorial, i am going to show you MySQL TIME_TO_SEC() function with the help of it’s syntax, parameters and examples. MySQL TIME_TO_SEC() function The MySQL TIME_TO_SEC function converts a time value into numeric seconds. Syntax of MySQL TIME_TO_SEC() function The syntax of MySQL TIME_TO_SEC() function; as follows: TIME_TO_SEC(time) Parameters of time_to_sec() function Parameter … Read more

MySQL TIME_FORMAT Function

MySQL TIME_FORMAT function; In this tutorial, i am going to show you MySQL TIME_FORMAT() function with the help of examples. MySQL TIME_FORMAT() function MySQL TIME_FORMAT() converts a time in a formatted string using the format specifiers. Syntax of MySQL TIME_FORMAT Function The syntax of MySQL TIME_FORMAT Function; as follows: TIME_FORMAT(time,format) Parameters OF TIME_FORMAT() Function Parameter … Read more