1.Select the correct output of the code:
s="GOOD MORNing"
print(s.capitalize(),s.title(),s.swapcase(),end="!")
2. What will the output of the following expression in Python?
print(2**3**2//8)
D1={'Rahul':295, 'Rithu':15, 'Mishel':64, 'Nihan':120}
print('Mishel' in D1, 15 in D1, sep="#")
Str="I will Succeed"
lis=Str.split(" ")
Str= "INCREDIBLE INDIA @ 75"
S=Str.partition(" ")
print(S)
L=["Sunday" , "Monday", "Tuesday", "Wednesday"]
print(len(L)/2*len(L[2]))
L=[1,2,3,4,5]
Lst=[]
for i in range(len(L)):
if i%2==1:
t=(L[i],L[i]**2)
Lst.append(t)
print(Lst)
Does this form look suspicious? Report