Posts by Rafael Eduh • 51 points
2 posts
-
3
votes1
answer894
viewsQ: Python Unicodedecodeerro in jupyter notebook. Working with . csv
I’m learning to manipulate files .csv in Python with the jupyter notebook. I extracted a file from the system, in csv, separated by commas, but when I opened I received this error: arqsb2 =…
-
2
votes2
answers130
viewsQ: Local variable declaration in a PYTHON function
def fib(n): a, b = 0, 1 while a < n: print(a, end=' ') a, b = b, a+b print() result-> 0 1 1 2 3 5 8 13 21 34 55 89 144 233 377 610 987 1597 But if I declare the variables a and b in different…