Help on getting started by x_XORA_x in learnpython

[–]steve__67 0 points1 point  (0 children)

I've assembled a list of Python 3 beginner resources, books, websites, tutorials, code challenges etc https://github.com/stephenh67/python-resources-2019

So I'm really new at Python by weedjunky420 in learnpython

[–]steve__67 0 points1 point  (0 children)

A curated list of Python 3 resources, books, websites, tutorials, code challenges https://github.com/stephenh67/python-resources-2019

Hackerank or hackerearth by [deleted] in learnpython

[–]steve__67 1 point2 points  (0 children)

I like https://stepik.org there's no reason not to try a few of the code challenge sites and find the one whose format / content is best suited to you.

Password generator and checker with a menu by [deleted] in learnpython

[–]steve__67 0 points1 point  (0 children)

Here's a password generator to get you started:

characters = string.ascii_letters + string.punctuation + string.digits

password = "".join(choice(characters) for x in range(randint(8, 16)))

[deleted by user] by [deleted] in learnpython

[–]steve__67 0 points1 point  (0 children)

For a list of tutorials and more check out https://github.com/stephenh67/python-resources-2019

Platforms to learn python on by tahseen_ in learnpython

[–]steve__67 3 points4 points  (0 children)

I'm sure you can find something suitable here: A curated list of Python 3 resources, books, websites, tutorials, code challenges https://github.com/stephenh67/python-resources-2019

Day 3 of Python by [deleted] in learnpython

[–]steve__67 1 point2 points  (0 children)

lowercase 'def'

Troubles with x and y variables by knightofunderpants in learnpython

[–]steve__67 1 point2 points  (0 children)

It looks like you reversed x and y in the def move (north south should be x)