Agastya518
Building 3Penguin
How to get table structure in MYSQL?
Steps: > use <database_name> ( use databases1 ) > desc or describe <table_name> ( desc table1)
What should I learn html or html5 ? Is there any difference between them?
Hello GladToCode, HTML is an Mark-Up Language (Hyper Text Markup Language) for describing structure of a Web page. HTML5 is an improved version of HTML, with some improvements and more efficiency. Some...
Predict the Output.
Hello pallab_bapari, This program is written in Python language and this code is an example of List Comprehension. About Program Function You write a function even() which can take n parameter and function...
What CSS do in a website?
CSS (Cascading Style Sheets) is used to style and layout web pages — for example, to alter the font, color, size, and spacing of your content, split it into multiple columns, or add animations and other...
What is “None” in Python?
Python uses the keyword None to define null objects and variables. While None does serve some of the same purposes as null in other languages, it's another beast entirely. As the null in Python, None is...
How do you write comments in python?
2 ways to write comments in Python Programming Language. - Use Hashtag - # - Use Triple quote - """
How internet works?
The internet is a global network of interconnected computers and servers that communicate with each other using standardized protocols. Here's a simplified overview of how the internet works: Data transmission:...
How to write paragraph in HTML?
In HTML, you can use the <p> tag to create a paragraph of text. Here's an example: <p>This is a paragraph of text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Donec ac magna vel...