Coding
-
Swiper API: Navigation & Pagination
Navigation Parameters ParameterTypeDefaultDescriptionnavigationobject Object with navigation parameters. For example:var mySwiper = new Swiper('.swiper-container', { navigation: { nextEl: '.swiper-button-next', prevEl: '.swiper-button-prev', }, }); {nextElstring / HTMLElementnullString…
Read More » -
3 Types Of ChatterBot’s Preprocessors
ChatterBot’s preprocessors are simple functions that modify the input statement that a chat bot receives before the statement gets processed by the…
Read More » -
ChatterBot Output Adapters
Creating a new output adapter You can write your own output adapters by creating a new class that inherits from chatterbot.output.OutputAdapter and…
Read More » -
3 Types Of ChatterBot’s Preprocessors
ChatterBot’s preprocessors are simple functions that modify the input statement that a chat bot receives before the statement gets processed by the…
Read More » -
Python 3 Conditional Statements: If, If Else and Nested If Statements
In a Python program, the if statement is how you perform this sort of decision-making. It allows for conditional execution of a…
Read More » -
Python 3 Operators: Arithmetic, Comparison, Logical and More
What Are Operators in Python? Operators are special symbols in Python that carry out arithmetic or logical computation. The value…
Read More » -
Python 3 Variable Usage and Variable Types
Python is completely object oriented, and not “statically typed”. You do not need to declare variables before using them, or…
Read More » -
HTML CSS & Links
CSS is short for Cascading Style Sheets.CSS was first used in HTML4 to better render HTML elements.CSS can control the…
Read More » -
HTML Formatting & Comments
Some text formatting tags are already provided in HTML.If it is not necessary, we can use these text formatting tags…
Read More » -
HTML Headings & Paragraphs
The <H1>-<H6> tags in the HTML document define 6 headings that indicate different levels of importance. HTML Heading Example HTML Heading…
Read More »