Question: What will be printed after the following code segment? What will be printed after the following code segment? my _ str = 'Computer Science Class'

What will be printed after the following code segment? What will be printed after the following code segment?
my_str='Computer Science Class'
print (my_str.split ('e'))
['Comput','e','r Sci', 'nc','e',' Class']
['Comput','r Sci', 'nc',' Class']
['Comput','','r Sci', 'nc','',' Class']
['Computer', 'Science', 'Class']
my_list =[]
for x in range(1,10):
if not (x %3):
my_list.append(x)
print(my_list)
[1,2,3,4,5,6,7,8,9]
[2,4,8]
[3,6,9]
[1,2,4,7,8]

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Programming Questions!