Basic Python Syntax and Data Types: variables, strings, integers, floats, lists, and dictionaries.

Python is a popular programming language that is widely used in data science due to its simplicity, flexibility, and powerful libraries. In this post, we will cover the basic syntax and data types in Python, including variables, strings, integers, floats, lists, and dictionaries.

Variables

A variable is a named reference to a value in Python. A variable can hold a wide range of data types, including numbers, strings, lists, and dictionaries. To define a variable, we simply choose a name and assign a value to it using the “=” operator. Here’s an example:

makefile
x = 42

In this example, we have defined a variable named “x” and assigned it the value 42. We can then use this variable in our code, like so:

scss
print(x)

This will print the value of the “x” variable, which is 42.

Strings

A string is a sequence of characters in Python. Strings are often used to represent text data in Python. To define a string, we simply enclose the text in quotes, either single or double quotes. Here’s an example:

makefile
message = "Hello, World!"

In this example, we have defined a variable named “message” and assigned it the string value “Hello, World!”. We can then use this variable in our code, like so:

scss
print(message)

This will print the value of the “message” variable, which is “Hello, World!”.

Integers

An integer is a whole number in Python. Integers are often used to represent counts, quantities, or indices in Python. Here’s an example:

makefile
x = 42

In this example, we have defined a variable named “x” and assigned it the integer value 42. We can then use this variable in our code, like so:

scss
print(x)

This will print the value of the “x” variable, which is 42.

Floats

A float is a decimal number in Python. Floats are often used to represent measurements or other continuous values in Python. Here’s an example:

makefile
y = 3.14

In this example, we have defined a variable named “y” and assigned it the float value 3.14. We can then use this variable in our code, like so:

scss
print(y)

This will print the value of the “y” variable, which is 3.14.

Lists

A list is a collection of values in Python. Lists are often used to store a sequence of related values in Python. To define a list, we enclose the values in square brackets and separate them with commas. Here’s an example:

css
fruits = ["apple", "banana", "cherry"]

In this example, we have defined a variable named “fruits” and assigned it a list of three string values: “apple”, “banana”, and “cherry”. We can then use this variable in our code, like so:

scss
print(fruits)

This will print the value of the “fruits” variable, which is [“apple”, “banana”, “cherry”].

Dictionaries

A dictionary is a collection of key-value pairs in Python. Dictionaries are often used to represent structured data in Python. To define a dictionary, we enclose the key-value pairs in curly braces and separate them with commas. Here is an example

 

makefile
person = {"name": "John", "age": 30, "city": "New York"}

In this example, we have defined a variable named “person” and assigned it a dictionary with three key-value pairs: “name”: “John”, “age”: 30, and “city”: “New York”. We can then use this variable in our code, like so:

scss
print(person)

This will print the value of the “person” variable, which is {“name”: “John”, “age”: 30, “city”: “New York”}.

Conclusion

In this post, we have covered the basic syntax and data types in Python, including variables, strings, integers, floats, lists, and dictionaries. We have seen how to define these data types and how to use them in our code. By the end of this post, you should have a solid understanding of the basic data types in Python, which will enable you to start writing your own Python programs and working with data in Python.

 

Previous articleIntroduction to Python for Data Science
Next articleData Manipulation with Pandas
A.Sulthan, Ph.D.,
Author and Assistant Professor in Finance, Ardent fan of Arsenal FC. Always believe "The only good is knowledge and the only evil is ignorance - Socrates"
Subscribe
Notify of
guest
0 Comments
Inline Feedbacks
View all comments