L'IMPORTANZA DI ANDARE A CAPO
✍🏻😎
#scrittura#writingtips#wearewriting
⏩ Questo è l'incipit de 📕Il calamaro gigante di Fabio Genovesi:
Del mare non sappiamo nulla.
Nulla di nulla, eppure il mare è quasi tutto.
Il fatto di andare a capo, dopo la prima frase, è una scelta efficace.
Perché?
⏩ Quando mettiamo un punto, il lettore respira. Se andiamo a capo, la pausa è ancora più lunga.
Funziona perché crea sospensione. L'opposizione tra nulla della prima frase e tutto della seconda rimarca l'effetto (non sarebbe stato uguale con i due termini di seguito).
✅ Andare a capo deve essere una scelta ragionata.
✅ Evitate in ogni caso muri di testo.
✅ Certo, andare a capo deve avere un senso, se vogliamo rendere l'idea di un discorso che continua, continuiamo.
N.B.📕📕📕 Il libro di Genovesi è bello, parla di personaggi incredibili, esistiti nella realtà. La storia è originale.
@writingway
🙌Se ti è piaciuto questo post e pensi possa interessare ad altri, inoltralo cliccando sulla freccia a destra.
#Functions are first-class citizens in Python:
# They can be passed as arguments to other functions,
# returned as values from other functions, and
# assigned to variables and stored in data structures.
»> def myfunc(a, b):
... return a + b
...
»> funcs = [myfunc]
»> funcs[0]
<function myfunc at 0x107012230>
»> funcs[0](2, 3)
5
# Functions are first-class citizens in Python.
# They can be passed as arguments to other functions,
# returned as values from other #functions, and
# assigned to variables and stored in data structures.
»> def myfunc(a, b):
... return a + b
...
»> funcs = [myfunc]
»> funcs[0]
<function myfunc at 0x107012230>
»> funcs[0](2, 3)
5
https://docs.python.org/3/library/subprocess.html
The #subprocess module allows you to spawn new #processes, connect to their input/output/error pipes, and obtain their return codes. This module intends to replace several older #modules and #functions.
#python
https://docs.python.org/3/library/atexit.html
The #atexit module defines #functions to #register and #unregister cleanup functions. Functions thus registered are automatically executed upon normal interpreter termination. atexit runs these functions in the reverse order in which they were registered; if you register A, B, and C, at #interpreter#termination time they will be run in the order C, B, A.