python and data preprocessing Flashcards

1
Q

Libraries in machine learning

A

1.Pandas-It is used for data manipulation and analysis and providing data structures.
2.Numpy-It is used for numerical computing in python.
3.Tensorflow-It is used for high performance numerical computation.
4.Matplotlib-It is is used for creating visualisation in Python.
5.Seaborn-It is also used for data visualizations.
6.Scipy-A library used for scientific and technical computing
7.Keras-It is used to implement neural networks.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

Keywords

A

They are reserved words that can not be used as an identifier.eg.false.true,for,if.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

Code for showing keywords

A

import keyword
print(keyword.kwlist)
len(keyword.kwlist)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

Identifier

A

These are names given to entities like class,funtion,variables.They help differentiate one entity from one another.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

Rules when writing identifiers

A

They can not start with a digit
They can not use special symbols
Keywords cannot be used as identifies
egp=156
if p==156:
print(p)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

Comments

A

Single line comments-#
Multiple line comments-‘’’

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

Variable

A

Is a reserved memory location that is used to store a value
x=5
id(x)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

ID function

A

It returns the identity of the object.
The identity of an object is defined in three aspects:
1.As an integer or any other data type.
2.It is guaranteed to be unique.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

Data types

A

Strings
Integers
Floats
Double
Boolean

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

Docstring

A

It provides a way of associating documentation with funtions,clases,methods or modules

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
11
Q

List

A

It is an ordered sequence of items

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
12
Q

All method-all()

A

All method returns true if all elements in a list is true but false if all elements are false

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
13
Q

Tuples

A

It is like a list but the elements cannot be changed once the values are assigned ie immutable
It can contain a mix of data types

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
14
Q

Sets

A

They are a collection of items
they are unique,immutable and the set itself is mutable ie can add or remove items

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
15
Q

Add & Remove Items

A

myset.add(‘NINE’) # Add item to a set using add() method
myset
myset.remove(‘NINE’) # remove item in a set using remove() method
myset

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
16
Q

Union of sets

A

A = {1,2,3,4,5}
B = {4,5,6,7,8}
C = {8,9,10}
A|B # Union of A and B (All elements from both sets. NO DUPLICATES)

17
Q

Dictionary

A

is a mutable data type in Python.
A python dictionary is a collection of key and value pairs separated by a colon (:) & enclosed
in curly braces {}.
Keys must be unique in a dictionary, duplicate values are allowed.
egmydict = {1:’one’ , 2:’two’ , 3:’three’} # dictionary with integer keys
mydict

18
Q

Operators

A

Operators are special symbols in Python which are used to perform operations on variables/values.
eg arithmetic,logic,comparison

19
Q

Functions

A

A function is a block of organized code written to carry out a specified task

20
Q

Information onfunctions

A

1.Functions help break our program into smaller chunks for better readability.
2.Information can be passed into a function as arguments.
3.Parameters are specified after the function name inside the parentheses.
4.We can add as many parameters as we want. 5.Parameters must be separated with a comma.
6.A function may or may not return data.
7.In Python a function is defined using the def keyword

21
Q

Parameter VS Argument

A

A parameter is the variable listed inside the parentheses in the function definition while
An argument is the value that is sent to the function when it is called.

22
Q

Types of functions

A

Built-in function :- predefined functions that are readily available for use like sum() , print()
User-Defined Functions:- Function that we define ourselves to perform a specific task.
Anonymous functions : Function that is defined without a name. Are
also called as lambda functions. They are not declared with the def keyword

23
Q

Function syntax

A

FunctionName(parameters):
statements(s)
return[expression]
example
def myfunc():
print(“Hello Python Lovers”)
myfunc()

24
Q

Class

A

Is a blueprint for creating objects

25
Q

Objects

A

Is an encapsulation of variables and functions