numbers = [13, 27, 26, 643, 65, 432, 3, 85]

possibleMin = numbers[0]
for x in numbers:
    if x < possibleMin:
        possibleMin = x
print(possibleMin)
3
xvalue = [1, 2, 3, 4, 5, 6, 7, 8, 9]
value = [1, 2, 3, 4, 5, 6, 7, 8, 9]
import math
calc1 = xvalue * 10 + value
calc2 = value * 10 + xvalue
calc3 = calc1 - calc2
if calc3 == 2 or calc3 == 12 or calc3 == 22 or calc3 == 78:
    print(calc1)
---------------------------------------------------------------------------
TypeError                                 Traceback (most recent call last)
/Users/nathancapule/vscode/CSPFastpages/CSPFastpages/_notebooks/2022-12-05test.ipynb Cell 2 in <cell line: 6>()
      <a href='vscode-notebook-cell:/Users/nathancapule/vscode/CSPFastpages/CSPFastpages/_notebooks/2022-12-05test.ipynb#W2sZmlsZQ%3D%3D?line=3'>4</a> calc1 = xvalue * 10 + value
      <a href='vscode-notebook-cell:/Users/nathancapule/vscode/CSPFastpages/CSPFastpages/_notebooks/2022-12-05test.ipynb#W2sZmlsZQ%3D%3D?line=4'>5</a> calc2 = value * 10 + xvalue
----> <a href='vscode-notebook-cell:/Users/nathancapule/vscode/CSPFastpages/CSPFastpages/_notebooks/2022-12-05test.ipynb#W2sZmlsZQ%3D%3D?line=5'>6</a> calc3 = calc1 - calc2
      <a href='vscode-notebook-cell:/Users/nathancapule/vscode/CSPFastpages/CSPFastpages/_notebooks/2022-12-05test.ipynb#W2sZmlsZQ%3D%3D?line=6'>7</a> if calc3 == 2 or calc3 == 12 or calc3 == 22 or calc3 == 78:
      <a href='vscode-notebook-cell:/Users/nathancapule/vscode/CSPFastpages/CSPFastpages/_notebooks/2022-12-05test.ipynb#W2sZmlsZQ%3D%3D?line=7'>8</a>     print(calc1)

TypeError: unsupported operand type(s) for -: 'list' and 'list'