I am trying to append 3 tables. However, I hope there will be no duplicated items after appended. Preserve value In order: Table 1 -> Table 2 -> Table 3 Is it possible to conduct it in Python using Pandas or Numpy? Great thanks.
import pandas as pd
Table1 = pd.DataFrame([[1, 1], [2, 1], [3, 1], [4, 1], [5, 1], [6, 1]], columns=['Item', 'Value'])
Table2 = pd.DataFrame([[5, 2], [6, 2], [7, 2], [8, 2]], columns=['Item', 'Value'])
Table3 = pd.DataFrame([[8, 3], [9, 3], [10, 3]], columns=['Item', 'Value'])
Append = pd.DataFrame([[1, 1], [2, 1], [3, 1], [4, 1], [5, 1], [6, 1], [7, 2], [8, 2], [9, 3], [10, 3]], columns=['Item', 'Value'])