Basic Data Types in #Python Data types are used to allow us to determine what operations we can perform on variables. Here are the different basic data types in #python : int float string boolean We use the function type(variable) to see the data type of a variable.
1
0
1
Replies
Data type str : Consider str data types like raw text like "I like coding" , 'Enjoy life !!!' , """It's just me""". Those are different ways to declare str data type variables.
1
1
0