This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#Working with arrays | |
import numpy as np | |
a = np.array([[1,2,3],[3,4,5]]) | |
print('a') | |
print(a) | |
#Reshape as three rows 2 columns | |
b = a.reshape(3,2) | |
print('b') | |
print(b) | |
#Reshape as two rows and three columns | |
c = a.reshape(2,3) | |
print('c') | |
print(c) | |
#Transpose | |
d = a.T | |
print('d') | |
print(d) | |
#Can only specify one unknown dimension | |
#unknown dimension for rows but two columns | |
e = a.reshape(-1,2) | |
print('e') | |
print(e) | |
#2 rows one unknown dimension for columns | |
f = a.reshape(2,-1) | |
print('f') | |
print(f) | |
#parse the array | |
i = 0 | |
print('print values of a') | |
for row in a: | |
for value in row: | |
print('position',str(i)) | |
i = i+1 | |
print(value) | |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#list = [] | |
#tuple = () | |
#sets = {} | |
#dictionary = {} | |
sportslist = ['cricket','hockey','tennis','badminton'] | |
vegetablestuple = ('brinjal','tomato','beetroot','drumstick') | |
foodmenuset = {'biryani','roti','rice','curd'} | |
dicthotels = {'india':'Delhi','china':'beijing','srilanka':'colombo','pakistan':'islamabad'} | |
dicthotelscities = {'india':['Delhi','chennai','mumbai'],'china':['beijing','shangai']} | |
print('sportslist') | |
print('_______________') | |
for name in sportslist: | |
print(name) | |
print('vegetablestuple') | |
print('_______________') | |
for name in vegetablestuple: | |
print(name) | |
print('dicthotels') | |
print('_______________') | |
for key,value in dicthotels.items(): | |
print(key) | |
print(value) | |
print('dicthotelscities') | |
print('_______________') | |
for key,value in dicthotelscities.items(): | |
print(key) | |
for city in value: | |
print(city) | |
No comments:
Post a Comment