Variables Assignment In Python Programming Language (2nd part)
Here I published the second part of the consecutive series about Python Programming language to learn for all.
Python Programming Language (1st part)
Variables and Assainment:
The main task of a computer program is to store values and perform specific operations on those values. To store value we assign variables. In Python, the variable is created when we assign a value to it. So we can say variables are memory locations. Python Interpreter allocates memory locations as variables names based on the data type.
Python variables names are case sensitive. For example - age, Age are two different variables. Variable names can’t start with a digit. It can contain letters, underscore and digits. When we assign a variable we use '=' sign, remember this sign(=) doesn't mean mathematically equal.
Real-life Scenario
Problem :
User's information collection and show the values
Task :
Write down the procedure step by step (Pseudocode)
Pseudocode to code :
Open your Python IDLE from startmenu on windows.
Type on your Python IDLE and try to understand what happens one by one.
I hope you understand the topic today. If I get your support, I will consider myself a good fit.
Next Topic
Python Keywords and Identifiers (3rd part)
Leave Variables Assignment In Python Programming Language (2nd part) to:
Read more #python posts
Best Posts From Hive-blogger
We have not curated any of alrashel's posts yet. But you can encourage our curation team to review posts by visiting them regularly and by referring other readers. Because we give priority to frequently read content.
More Posts From Hive-blogger
- Bioengineering: How It Enhances Photosynthesis and Increases Yields in Food Crops
- Every programmer needs to know the Algorithms
- The booting operations phase of the modern computer system
- A Modern Perspective Of Operating Systems
- Moved to the appropriate community!
- Trading in a smart way.
- A Popular Data Structure In Python Programming : The List
- Bitcoin Is Going To The Back Of Its Price
- Let's Destroy Racism
- Web3 Decentralized Apps Keep Quarantined During The Global Epidemic.
- The Ethereum Name Service (ENS)
- Ethereum Enhances Transaction Privacy
- Primitive and non-primitive data structures in Python
- Python Rules Of Coding: Docstrings
- Python Rules Of Coding: String literals
- Python Rules Of Coding: Comments
- Python Rules Of Coding: Naming Conventions
- JavaScript : The Scripting Language
- Python Rules Of Coding: Indentation
- Python Data Types (fourth part)