Posts by hmm • 49 points
3 posts
-
0
votes0
answers26
viewsQ: Doubt when using xlsx2csv inside Python
I am using the xlsx2csv available in: https://github.com/dilshod/xlsx2csv from xlsx2csv import Xlsx2csv Xlsx2csv("myfile.xlsx", outputencoding="utf-8").convert("myfile.csv") Someone who already used…
-
1
votes2
answers997
viewsQ: Join lines from a text file
Given a text file with the layout below: VASCO;JOGADOR_1 VASCO;JOGADOR_2 VASCO;JOGADOR_3 PALMEIRAS;JOGADOR_4 PALMEIRAS;JOGADOR_5 PALMEIRAS;JOGADOR_6 PALMEIRAS;JOGADOR_7 How to create a logic…
-
2
votes3
answers22225
viewsA: How to compile a. java file using the Ubuntu terminal
When are you ? Have you installed the JDK(Java Development Kit)? This kit has javac which is javaCompiler (a program that will compile your .java files). If possible, go ahead, otherwise download…