@pytest.mark.parametrize('products', ['a'], ['b'])
def test_letters():
assert print(f'this is the letter {products}')
On the output on the command line I get this
this is the letter ['a']
but I want it to be as a string and print both the letter a and b
this is the letter a
or
this is the letter b