Consider, data=pd.DataFrame({'names':['tom','sam',...],'email':['tom21@gmail.com','samdr@yahoo.com','jk21456@abc.com',..],'Firstweekscore':[],'secondweekscore:[]}) d={'names':['tom','sam','ram','kumar'],'email':['tom21@gmail.com','samdr@yahoo.com','ram@gmail.com','k2@gmail.com'],'first_weekscore':[90,90,90,96],'second_weekscore':[92,89,78,87]} data=pd.DataFrame(d) print(data) 1.Write a function which will create a new column consisting of average of two scores data['average']=(data['first_weekscore']+data['second_weekscore'])/2 2.List comprehension --> create another column which is consisting of scores 93 --> 96 week3=[i+3 for i in data['second_weekscore']] data['week3']=week3 print(data) 3.'gmail.com' -->regular expressions in pandas print(data[data['email...