Posts by Angelo Gonçalves Salles • 27 points
4 posts
-
0
votes0
answers20
viewsQ: csv file being downloaded with null content - Angular 9
I have a code that makes a request my api in Node that returns me a csv file, but when I download the file, it comes only with null content generateReport() {…
-
0
votes2
answers522
viewsQ: Remove function in one list alters elements in another Python3
def almostIncreasingSequence(sequence): x = sequence for i in range(len(x)): sequence = x cont = 0 y = False sequence.remove(sequence[i]) for j in range(len(sequence)): try: if sequence[j] <…
-
1
votes1
answer4911
viewsQ: Eoferror type exception treatment
while True: try: x = input().split() l.append(x) except EOFError: break I’m having a problem with this code where I’m not getting an EOF from x, because if I don’t type anything and just hit enter,…
-
0
votes1
answer294
viewsQ: Bubble Sort in Python3
def bubble_sort(list): for i in range(len(list)): for j in range(len(list)-1): if list[j] > list[j+1]: list[j], list[j+1] = list[j+1], list[j] else: continue I just made this Bubble Sort, but I…