Posts by Luciano Ramalho • 429 points
2 posts
-
3
votes3
answers1153
viewsA: Next() in CSV Reader with Python 3
You need to use the function next() instead of a method with that name. Thus: leitor = csv.reader(arquivo) next(leitor) In the standard Python library iterators implemented in C directly support the…
-
26
votes4
answers2054
viewsA: What can be considered a character?
Responding point by point: What can be considered as a character in the programming? For a long time the definition "1 character = 1 byte" was used. Today, within programming, the best definition is…
language-independentanswered Luciano Ramalho 429