python2
python2
Values
Data Type
In programming languages, every value or data has an associated type to it known as data type.
Some commonly used data types
String
Integer
Float
Boolean
This data type determines how the value or data can be used in the program. For example,
mathematical operations can be done on Integer and Float types of data.
String
Capital Letters ( A – Z )
Small Letters ( a – z )
Digits ( 0 – 9 )
Space
https://learning.ccbp.in/course?c_id=a6454e48-d030-4d49-8920-253198052232&t_id=6bdf14a9-2664-4a96-9764-89d965de71a0&s_id=abd72d9f… 1/3
7/27/24, 8:52 PM Revolutionizing the Job Market | NxtWave
Some Examples
"Hello World!"
"1234"
Note
The Stream of characters enclosed within quotes (Both single quotes and Double
quotes) are considered as strings.
'hello'
"hello"
Integer
All whole numbers (positive, negative and zero) without any fractional part come under Integers.
Examples
Float
Boolean
In a general sense, anything that can take one of two possible values is considered a Boolean.
Examples include the data that can take values like
True or False
Yes or No
0 or 1
On or Off , etc.
True and False are considered as Boolean values. Notice that both start with a capital letter.
https://learning.ccbp.in/course?c_id=a6454e48-d030-4d49-8920-253198052232&t_id=6bdf14a9-2664-4a96-9764-89d965de71a0&s_id=abd72d9f… 2/3
7/27/24, 8:52 PM Revolutionizing the Job Market | NxtWave
10 to a variable age
PYTHON
1 age = 10
https://learning.ccbp.in/course?c_id=a6454e48-d030-4d49-8920-253198052232&t_id=6bdf14a9-2664-4a96-9764-89d965de71a0&s_id=abd72d9f… 3/3