POCHI SUPERLATIVI, OTTIMO RISULTATO✍🏻
Il superlativo non è una scelta obbligata.
#writingtips#scrittura
L'uso dei superlativi assoluti - bellissimo, bravissimi, interessantissimi - è sconsigliato.
Già, ma allora come posso rendere l'idea che il superlativo esprime❓
Ci sono altre possibilità, di certo preferibili.
✅ Prima dell'aggettivo si utilizza un avverbio di qualità come "molto" o "assai": siamo molto felici, sono assai interessato.
✅ Si possono utilizzare gli avverbi intensificativi come "proprio" o "davvero": il bambino è davvero bello.
✅ Nel linguaggio colloquiale o pubblicitario si usano dei prefissi come super, extra, iper: supercomodo, extraricco.
✅ L'aggettivo può essere rinforzato con tutto: lei è tutta felice.
✍🏻 Gli aggettivi che terminano in -eo -io - uo non hanno il superlativo, ma si usano avverbi come molto o particolarmente. Esempio: molto ingenuo.
@writingway
🙌Se hai trovato interessante questo post e pensi possa piacere 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.