Hello Guys ,Today i am uploading questions related to our post i hope that you learnt something new concept from this post. also Comment your answer below my post 1.Which of these is not a variable? a. abc b. x_y c. 123 d. _a12 2.Which of the following is an invalid statement? a. abc=1 b. a b c= 1 2 3 c. a,b,c =1000,2,3 d. a_b_c=1,000,000
Popular posts from this blog
Pre-defined Function in python
We have already Learnt on the previous post that there is 14 Built in data types in python. Today's Agenda type() int() float() ord() complex() Now , If you have to make a variable x i.e.x=5 then On run -time,the interpreter decides its type after considering the content of that variable . we can also verify it by using a function called type() in IDLE. Note: IDLE is a short form of Integrated Development and learning Environment. Type Conversion: At first ,we understand that why do we type conversion in python by an example. let us consider that a variable x=6 ...
pandas module in python
Pandas is an opensource library that allows to you perform data manipulation in Python. Pandas library is built on top of Numpy, meaning Pandas needs Numpy to operate. Pandas provide an easy way to create, manipulate and wrangle the data. Pandas is also an elegant solution for time series data. Why use Pandas? Data scientists use Pandas for its following advantages: Easily handles missing data It uses Series for one-dimensional data structure and DataFrame for multi-dimensional data structure It provides an efficient way to slice the data It provides a flexible way to merge, concatenate or reshape the data It includes a powerful time series tool to work with What is a data frame? A data frame is a two-dimensional array, with labeled ...
Comments
Post a Comment