Stampa dei Tipi di Dati in C
È una stringa, %d è un integer e %f è un numero di floating point.
Utilizzo delle Stringhe e dei Double in C
Since printf treats both float and double as the same, we can print the double value using both %f and %lf format specifier.
Operazioni di Base in Python
Per dividere una parola in una lista di lettere, utilizzare list() word = "word" list of letters = list(word) print(list of letters)