The HTML <br> tag inserts a single line break. A <br> tag is an empty tag which means that it has no end tag like other HTML tags(<p> tag, <div> tag, etc). HTML <br> Tag :- It inserts a single line break . It is an empty tag without any end tag. Here are few question on br tag can confused you Read More…
Month: November 2019
HTML button tag | link, onClick, style, color, size, Code example
HTML button is very important for any website, without it users can’t use functionalists of the website. With HTML Button Tag (Element) you can create a button. Another way is using the input tag to create a button. Syntax: <button name=”name”> HTML button tag Example:- Creating button in HTML very easy, just use <button> tag. Read More…
Python print list – Using Loops, Maps | 4 Ways
Python List is the most frequently used and very versatile datatypes in Python. It’s easy to make a list but how you will do program a python code to print list elements? In this tutorial, we will do a python program only for a print full list. Here are way some ways to print a Read More…
Python Statements and Syntax – Symbols & Special Characters
Every programming language has different Statements and Syntax. But most programming languages have almost the same. Python also has Statements and Syntax, and that is common in a programming language but you must have known about it. Statement are some rules and certain symbols are used in program(code). Let’s see the list of symbol and Read More…
Python split String | Without split() Function
How to Splitting strings in Python without split()? The easiest way to split a string in python using the Python split() function. But in this tutorial, we will find other ways (without using the split() function) to do it. Do split strings, using a for loop, array and append:- In the example, first need 2 Read More…