difference between git and github code example
Example 1: difference between anaconda and pycharm
PyCharm is an IDE (a code editor)
Anaconda is a set of libraries (a distribution)
To add Anoconda suppport to Pycharm see
https://stackoverflow.com/questions/36830476/what-is-the-difference-between-anaconda-and-pycharm/36830516#36830516
Example 2: difference between useHistory and props.history
//You can use useHistory() in any component,
//but props.history only in components where the history is available in props
//When you use history.push, you do NOT have to specify the pathname.
const queryString = new URLSearchParams(params).toString()
history.push({
search: "?" + queryString
});