1、 After executing the following code , The result of the operation is
seq = ['hello','good','morning']
s = '*'.join(seq)
print(s)
A、hellogoodmorning*
B、hellogood*morning
C、hello*good*morning
D、*hello*good*morning*
answer :C
Test point analysis : Examine comprehensive knowledge ,join function , Is to convert each element in the sequence into a string through the connection of the preceding characters , So the answer C
2、 Xiao Hong uses a list score=[80,78,92,96,100,88,95] To show her seven week English test score in turn , If you want to find the English test score of the third week and delete it , What to do
A、score[3]
B、score[2]
C、score.pop(3)
D、score.pop(2)
answer :D