Exemplo n.º 1
0
 def test_table_reverse(self):
     table = Table(headers=['python', 'rules'])
     table.extend([[1, 2], [3, 4], [5, 6]])
     table.reverse()
     self.assertEquals(table[:], [[5, 6], [3, 4], [1, 2]])
Exemplo n.º 2
0
 def test_table_reverse(self):
     table = Table(headers=["python", "rules"])
     table.extend([[1, 2], [3, 4], [5, 6]])
     table.reverse()
     self.assertEquals(table[:], [[5, 6], [3, 4], [1, 2]])
Exemplo n.º 3
0
table.append(["Porto Alegre", "Rio Grande do Sul", "Brazil"])
table.append(["São Paulo", "São Paulo", "Brazil"])

print "First 3 rows:"
for row in table[:3]:  # Slicing
    print row

# Change the two last rows:
table[-2:] = [["Junín", "Buenos Aires", "Argentina"], ["Ciudad del Este", "Alto Paraná", "Paraguay"]]
# Insert a row in the first position, using dict notation:
table.insert(0, {"City": "La Paz", "State": "La Paz", "Country": "Bolivia"})
print "New table:"
print table
print

table.reverse()
print "And the table in the reversed order:"
print table
print

popped_row = table.pop()
rio = ["Rio de Janeiro", "Rio de Janeiro", "Brazil"]
table.append(rio)  # repeated row
number_of_rios = table.count(rio)
index_of_first_rio = table.index(rio)
table.remove(rio)  # remove the first occurrence of this row
number_of_rows = len(table)
print "Popped row:", popped_row
print "Number of rows:", number_of_rows
print "Count of Rios rows (before remove):", number_of_rios
print "Table after pop and remove:"
Exemplo n.º 4
0
table.append(['São Paulo', 'São Paulo', 'Brazil'])

print 'First 3 rows:'
for row in table[:3]:  # Slicing
    print row

#Change the two last rows:
table[-2:] = [['Junín', 'Buenos Aires', 'Argentina'],
              ['Ciudad del Este', 'Alto Paraná', 'Paraguay']]
#Insert a row in the first position, using dict notation:
table.insert(0, {'City': 'La Paz', 'State': 'La Paz', 'Country': 'Bolivia'})
print 'New table:'
print table
print

table.reverse()
print 'And the table in the reversed order:'
print table
print

popped_row = table.pop()
rio = ['Rio de Janeiro', 'Rio de Janeiro', 'Brazil']
table.append(rio)  #repeated row
number_of_rios = table.count(rio)
index_of_first_rio = table.index(rio)
table.remove(rio)  #remove the first occurrence of this row
number_of_rows = len(table)
print 'Popped row:', popped_row
print 'Number of rows:', number_of_rows
print 'Count of Rios rows (before remove):', number_of_rios
print 'Table after pop and remove:'