Skip to main content

Posts

Showing posts from February, 2022

Data Types - 2 (Sequence Type)

 Hello Buddies😍                    You gained some knowledge in my previous blog😊. Please share and support my content. So let's start our topic Data Types. In this blog we cover about Sequence Data Type. Sequence general meaning is items or events follows a specific order is called sequence. Example of sequence is Calendar, Time, Queue, etc..,  Sequence Data Types classified into 3 types.  1) String 2) List 3) Tuple 1) String :                Collection of alphabets or any characters include numbers also is called string. So how can we identify a string?. There is way to identify the string is " " or ' ' (Quotes). if anything inside of this quotes is consider as string.  String are not  changeable once they are created. They are the on of the built in data type we all know.   2) List :                 ...

Data Types - 1 (Numeric, & Boolean)

 Hello Buddies 😍                                    Data Types is an important concept in any programming language. Our daily life is connected with data. I will tell you a examples  1) Pics, Video & Documents 2) Stock Market  3) Students Marks Report etc.,  Now let's start our topic data types. In python data is classified into these types. 1) Numeric Type:-             INTEGERS :-      + ∞ to -  ∞ between these numbers are called integers           COMPLEX NUMBER      Complex number is a containing of imaginary values is called Complex Number.           Float Numbers    Decimal numbers are called Float Numbers. Ex: - 2.6,0.3 etc.., BOOLEAN TYPE In this data type we have only two values. They are True or False I will explain remaining...