05/10/2025
What is the default value of end in the print() function?
A) newline
B) space
C) 'end'
D) None
Contact information, map and directions, contact form, opening hours, services, ratings, photos, videos and announcements from Data Analysis For Beginners, Education, Bangalore.
05/10/2025
What is the default value of end in the print() function?
A) newline
B) space
C) 'end'
D) None
Which keyword is used to define a function in Python?
A) func
B) def
C) function
D) define
03/08/2020
IBM Interview Question
18/06/2020
17/06/2020
One of the trick question in python
Data Analysis - Post 1
Numpy for beginners
Verctor is one dimensional array
Numpy array is two dimensional array
import numpy as np
1) my_list = [1,2,3] # this is list
arr = np.array(my_list)
arr # this is numpy array
2) list = [32,43,1,45,66,23,90,2]
arr = np.array(list)
arr.max() # it will return max value item from the list (90)
arr.min() # it will return min value item from the list (1)
arr.argmax() # it will return index of max value item in the list (6)
arr.argmin() # it will return index of min value item in the list (2)
01/02/2020
Get confidence in Data Analysis with Python Pandas
30/01/2020
Numpy - Basic Library for Data Analysis using Python
10/07/2019
Data Cleaning