Python short course: List Comprehensions

 Today I'll put a simple list comprehension example here.



In [1]: list_example = [c*4 for c in 'Python']

In [2]: list_example
Out[2]: ['PPPP', 'yyyy', 'tttt', 'hhhh', 'oooo', 'nnnn']

Comments

Popular posts from this blog

Research from the Lab's Little AI Scholars: Learn the life language using artificial intelligence

Lab's recommendation: Awesome books to learn machine learning and AI (continue updating)

Lab's weekly topic - week 49, 2023 - What's limitations and possible solutions for a new AI tools to detect blood poisoning?