Posts by Bruno Santos • 13 points
2 posts
-
1
votes2
answers1475
viewsQ: Find the largest palindrome made from the product of two 3-digit numbers - Python
I’m having a problem. I’m creating a Python algorithm to find the largest palindrome made from the product of two 3-digit numbers. Code: i = 0 while i <= 999: temp = str(i * 999) tempInverso =…
-
0
votes0
answers69
viewsQ: Customize . read() and . write() in Python
I’m starting to learn Python and I came up with a question using with to open files, it is possible to pass arguments to the methods arquivo.read() to read a line and jump to the bottom line when a…
python-3.xasked Bruno Santos 13