The result of the command apt search package
is usually not very useful unless you want an exhaustive list of perhaps only marginally related software (like search for vim
and get youtube-dl
)
To get a more specific result, you can A) use regular expression, like apt search ^python$
or B) use grep, like apt search python | grep -w python