variables and datatypes in python
# you can use the function type() which will returns the type of the variable
A = "Hello world !"
# here are some uses of it
>>> type(A)
<class 'str'>
>>> type(A) is int
False
>>> type(A) is str
True
variables and datatypes in python
# you can use the function type() which will returns the type of the variable
A = "Hello world !"
# here are some uses of it
>>> type(A)
<class 'str'>
>>> type(A) is int
False
>>> type(A) is str
True
python data types
# Pyhton data types
# Integer
age = 18
# Float (AKA Floating point number)
current_balance = 51.28
# Boolean
is_tall = False # can be set to either True or False
# String
message = "Have a nice day"
# List
my_list = ["apples", 5, 7.3]
# Dictionary
my_dictionary = {'amount': 75}
# Tuple
coordinates = (40, 74) # can NOT be changed later
# Set
my_set = {5, 6, 3}
python data types
# Float
average_tutorial_rating = 4.01
# Integer
age = 20
# Boolean
tutorials_are_good = True # True or False
# arrays/lists
numbers = [1, 2, 3]
python data types
Text Type: str
Numeric Types: int, float, complex
Sequence Types: list, tuple, range
Mapping Type: dict
Set Types: set, frozenset
Boolean Type: bool
Binary Types: bytes, bytearray, memoryview
Copyright © 2021 Codeinu
Forgot your account's password or having trouble logging into your Account? Don't worry, we'll help you to get back your account. Enter your email address and we'll send you a recovery link to reset your password. If you are experiencing problems resetting your password contact us