Posts by user140213 • 26 points
2 posts
-
1
votes1
answer360
viewsA: View excel table in html
There’s no way. XLSX is the extension of the files generated by Microsoft Excel, a nonfree proprietary software. Unlike extensions like PDF, JPEG, PNG, XML, MP3, MP4, etc, XLSX is not an open…
-
0
votes2
answers174
viewsA: Problem with input of more than one integer with input
What you can do is capture the input line, divide it into substrings in the spaces, and then parse the integers: entrada = input('Digite os números aqui: ') numeros = [int(i) for i in…