Posts

Variables In Python

 Variables In Python  Variables are the temporary storage location in computer memory. In programming, a variable is a value that can change, depending on conditions or information passed to the program. Typically, a program consists of instructions that tell the computer what to do and data that the program uses when it is running.  You can use any letter, the special characters"_"and every number provided you do not start with it. White spaces and signs with special meanings in python, as "+" and"-"are not allowed.  I usually use lowercase with words separated by underscores as necessary to improve readability. Remember that variable names are case sensitive. Python is dynamically typed, which means that you don,t have to declare what type each variable is. In python, variables are a storage placeholder for texts and numbers. It must have a name so that you are able to find it again. The variable is always assigned with an equal sign, followed by the val

Introduction Python Tutorial | #2 | Python Intro For Beginners | Python ...

Image

Python Tutorial | Why You Should Learn Python In 2021 | Python for Begin...

Image

Why You Should Learn Python In 2021 ?

Image
 Introduction To Python PYTHON IS A HIGH-LEVEL PROGRAMMING LANGUAGE, WITH APPLICATIONS IN NUMEROUS AREAS, INCLUDING WEB PROGRAMMING, SCRIPTING, SCIENTIFIC COMPUTING, MACHINE LEARNING, AND ARTIFICIAL INTELLIGENCE. PYTHON IS FASTEST GROWING AND MOST POPULAR PROGRAMMING LANGUAGE. IT IS VERY POPULAR AND USED BY ORGANIZATIONS SUCH AS GOOGLE, NASA, THE CIA, AND DISNEY. PYTHON IS PROCESSED AT RUNTIME BY THE INTERPRETER. THERE IS NO NEED TO COMPILE YOUR PROGRAM BEFORE EXECUTING IT. WHO USE PYTHON? IT IS USED BY A LOT OF COMMUNITY LIKE  . SOFTWARE ENGINEERS . DATA ANALYSTS . MATHEMATICIANS . SCIENTISTS . ACCOUNTANTS . NETWORK ENGINEERS . CODER . DEVELOPERS What are the prerequisites for learning python? It is not mandatory to know any other programming language before learning python. if you have time to learn and interest in programming. then you can easily learn python. the prerequisite for python is the basic knowledge of concepts like variables, loops, control statements,s, etc.no special p

How To Make Forms With CSS | CSS Tutorials | Form Design In CSS

Image

How to Create a Moon with CSS | How to Design Moon With CSS | CSS Tutorials

Image

HOW TO DESIGN MOON WITH HTML AND CSS SOURCE CODE

Image
 HTML AND CSS SOURCE CODE HTML FILE <! DOCTYPE   html > < html   lang = "en" > < head >      < meta   charset = "UTF-8" >      < meta   name = "viewport"   content = "width=device-width, initial-scale=1.0" >      < title > Document </ title >      < link   rel = "stylesheet"   href = "index.css" > </ head > < body >           < div   class = "div" ></ div > </ body > </ html > CSS FILE * {      margin :  0px ; } body {      background-color : black; } .div {      width :  300px ;      height :  300px ;      margin :  20px  auto;      background-color : white;      border-radius :  50% ;      box-shadow :  10px   20px   250px   20px  white,  150px   150px   250px  gray inset  ; }