learn-python3 icon indicating copy to clipboard operation
learn-python3 copied to clipboard

Jupyter notebooks for teaching/learning Python 3

Results 22 learn-python3 issues
Sort by recently updated
recently updated
newest added

download image from google using python

I think it would be a good idea to add these items to the exercise. Please let me know if you would agree. Thank you.

`ipytest.magics` command does not work with new version of ipytest. Now it is replaced with the working version

I suggest you add this popitem also in dictionaries my_dict = dict(food='ham', drink='beer', sport='football') print('dict before pops: {}'.format(my_dict)) result = my_dict.popitem() print('Result: {}'.format(result)) print('dict after popping items: {}'.format(my_dict))

Integrate Links for Binder https://mybinder.org/ either as https://mybinder.org/v2/gh/jerry-git/learn-python3/master or as badge: [![Binder](https://mybinder.org/badge_logo.svg)](https://mybinder.org/v2/gh/jerry-git/learn-python3/master)

When I cloned the repository on my local system, I am not able to follow the logical order of the notebooks. In other words on the Github Repository a logical...

jerry_git_learn_EP1_6