DEV Community

David Bosah
David Bosah

Posted on • Updated on

UNDERSTANDING PYTHON CODE STRUCTURE

Code Structure

This is the arrangement of code in a programming language. it encompasses the use of formatting techniques like whitespace and indentation. The goal of a good structure is reliability and maintainability.

Python code Structures

There are various parameters that are used in describing the Python language. There are basic ones that you must grasp. Let's look at some of them:

Comments:
These are used to make the code easy to understand. They start with "#"

Variables:
They are used to store data or values in your code.

Function:
They are used to exercise a certain function once called. They are either built in function or user defined function.

Data Types
Python Supports lots of built in data types including strings and integers.

Operators:
They are used to perform different operations on data and variables.

Let's Apply these Structures:

#This right here is a comment

#Defining Variables
a=10
y="happy"

#Defining Arithmetic operation
answer= a+8

#Now for functions 
#Examples of built in functions

Print()
Input()

#For user defined functions

Def Applaud (name)
Print("congratulations + name + !")

#Using the function

Applaud ("Meghan")
Enter fullscreen mode Exit fullscreen mode

Top comments (2)

Collapse
 
jgdevelopments profile image
Julian Gaston • Edited

I highly recommend color coding your syntax. You can do this in MD by:

  • using three back ticks
  • appending js, py, jsx or whatever right after the third backtick

Cool article!

Collapse
 
davidbosah profile image
David Bosah

Thanks for your suggestion Julian, I truly appreciate