Hey There! I am Lingaraj Senapati, the Co-founder of lingarajtechhub.com My skills are Freelance, Web Developer & Designer, Corporate Trainer, Digital Marketer & Youtuber.
Decision making specifies one or more conditions to be evaluated or tested by the program, if the statement is true then a particular condition is executed and if the statement is false then a particular statement is executed. Structure Of…
Today we collect best dev news around the different tech and developer news blog, like Advanced Types in Typescript, Building a node.js API with typescript and Graph-QL, Building a growing zone finder, Run node.js application on apache server etc. Please…
Comments are used to explain the code means it clears which line of code is written for which purposes. In python comments are used for in-line code documentation. The comments are make more code readable. The comments are not for…
In this tutorial we discus some basic points of python syntax Like How to write In command prompt, Python Indentation, Python Variables, Python Comments. Python Execution In Cmd Prompt: Python syntax can be executed directly within the command line, like:…
Variable Names: Like other programming languages, in python the variable declaration having certain rules and regulations. The variables are very short name like x and y or descriptive names like student_age, car_price etc. So, some common rules follow while declaring…
Python Variables: Variable is a container to store data. Variable is a name of memory location where data stored in a particular address. Creating Variables: Python has no syntax for declaring a variable. When we declare the variable the value…
There are 2 ways we use global variables in python. Normal Global Variable: Variables are created outside the function, are know as Global Variables. Global variables can be used by everyone, both inside of function and outside. Example Of Global…
Many Values To Multiple Variables: In python we can assign multiple values to multiple variables in a single line of code. The output of above code, Here, a very important point you note down that the number of values is…
Output Variables: The print statement is used to print values in console. The combination between text and variable to print at a time we use +. The output is: You can also use + character to add two integers like,…
Python Data Types: In programming world data types are important concept. The variables are stored different types of data to make the type is defined. So, python has following in-built data-types are as, Text Type: str Numeric Types: int, float, complex Sequence…