What is the correct way to print out the biggest number from a list in Python?
lst = ["1.1.3.9", "1.1.3.11", "1.1.3.30", "1.1.3.8", "1.1.2.7"]
print max(lst)
gives me
1.1.3.9
This value is wrong. The max value must be 1.1.3.30.
Please help. Many thanks in advance.