# Avots: https://en.wikipedia.org/wiki/Python_(programming_language)
my_str = """Python is an interpreted high-level programming language for general-purpose programming. Created by Guido van Rossum and first released in 1991, Python has a design philosophy that emphasizes code readability, notably using significant whitespace. It provides constructs that enable clear programming on both small and large scales. In July 2018, Van Rossum stepped down as the leader in the language community after 30 years.
Python features a dynamic type system and automatic memory management. It supports multiple programming paradigms, including object-oriented, imperative, functional and procedural, and has a large and comprehensive standard library.
Python interpreters are available for many operating systems. CPython, the reference implementation of Python, is open source software and has a community-based development model, as do nearly all of Python's other implementations. Python and CPython are managed by the non-profit Python Software Foundation.
On the origins of Python, Van Rossum wrote in 1996:
...In December 1989, I was looking for a "hobby" programming project
that would keep me occupied during the week around Christmas.
My office ... would be closed, but I had a home computer,
and not much else on my hands.
I decided to write an interpreter for the new scripting language
I had been thinking about lately: a descendant of ABC that would
appeal to Unix/C hackers.
I chose Python as a working title for the project,
being in a slightly irreverent mood (and a big fan
of Monty Python's Flying Circus).
"""
Ir dots teksta mainīgais (my_str).
Risinot noderēs:
# sadalīt tekstu rindiņās
lines = my_str.splitlines()
# iztīram tukšās rindiņas
lines = [item for item in lines if len(item)>0]
# parādīt pirmās rindiņas
lines[:2]
['Python is an interpreted high-level programming language for general-purpose programming. Created by Guido van Rossum and first released in 1991, Python has a design philosophy that emphasizes code readability, notably using significant whitespace. It provides constructs that enable clear programming on both small and large scales. In July 2018, Van Rossum stepped down as the leader in the language community after 30 years.', 'Python features a dynamic type system and automatic memory management. It supports multiple programming paradigms, including object-oriented, imperative, functional and procedural, and has a large and comprehensive standard library.']
# uzdevuma risinājumu var turpināt te