-
What are Keywords in Python?
Every programming language contains reserved terms, or keywords, with particular definitions and usage guidelines. Python is no exception. The essential building elements of every Python program are Python keywords. List of Python Keywords As of Python 3.8, there are thirty-five keywords in Python, which are as listed below: Quiz! Q. All the keywords in Python…
-
How to Download and Install Python?
The first step in becoming a Python developer is to install or update Python on your system. The setup process and installation of Python can be done in a number of methods: Check if you already have Python installed You can use command-line apps like PowerShell to ensure whether you have Python already installed or…
-
Introduction
If you know what is Python programming and what are its benefits, then the next thing you must know is the main uses of Python programming language. What are the applications of Python? Where can it be used? In this write-up (part of our comprehensive Python Tutorial for Beginners), we have mentioned the top 10 uses and applications of…
-
Easy to Read, Learn & Write
Python is a high-grade programming language with a Syntax similar to English. This enhances the code’s readability and understanding. Python is ultimately easy to learn and comprehend, which is why many people recommend it to newbies. When compared to other languages in the mainstream, such as C/C++ and Java, you need lesser lines of code…
-
What is Programming?
Hello World! If you are getting started in the realm of programming and Python, read on till the end of the topic. Imagine you are playing with your pet and you ask it to fetch the ball you just threw. Your pet will surely do as you instruct it to. You might wonder what this…
-
Event Handler Attachment
Method Description bind() Bind an event handler to be fired when the given type of event is sent to the element. In general, use the on() method instead. delegate() Bind one or more event handlers to be fired when the given type of event is/are sent to a descendant element matching selector. jQuery.proxy() Takes an existing function…
-
Document/Browser Events
Method Description error() Deprecated in v1.8 Bind an event handler to be fired if the element was not loaded correctly. load() Deprecated in v1.8 Bind an event handler to be fired when the element finishes loading. Deprecated in favor of Ajax load() method. ready() Bind an event handler to be fired when the DOM is fully loaded. resize() Bind…
-
Form Events
Method Description blur() Bind an event handler to be fired when the element loses keyboard focus, or trigger that event on an element. change() Bind an event handler to be fired when the element’s value changes, or trigger that event on an element. focus() Bind an event handler to be fired when the element gains…
-
Keyboard Events
Method Description keydown() Bind an event handler to be fired when a key is pressed and the element has keyboard focus, or trigger that event on an element. keypress() Bind an event handler to be fired when a keystroke occurs and the element has keyboard focus, or trigger that event on an element. keyup() Bind…
-
jQuery Event Methods
jQuery Event MethodsOrder by Alphabet This section contains a comprehensive list of event methods belonging to the latest jQuery JavaScript library. All the methods are grouped into categories. Mouse Events Method Description click() Bind an event handler to be fired when the element is clicked, or trigger that handler on an element. dblclick() Bind an…
