Post

Answer: B) Developers
› List comprehension filters: if len(i) > 6
› 'Python' = 6 chars (NO), 'Developers' = 10 (YES)
› result = ['Developers']
› *result unpacks = print('Developers')
For beginners: unpacking gets each element and passes as separate arguments. x = ['a','b'], print(*x) = print('a','b')
English

@PythonPr Answer: B
i for i in List if len(i)>6
Think as if a pointer is going over all the elements present inside the List
If the length of the element is more than 6, it will add that element inside the result list
*result : it unpacks the result list elements and prints it
Developer
English
















