How do I get fluent in Python?

前端 未结 8 1999
甜味超标
甜味超标 2021-01-31 23:16

Once you have learned the basic commands in Python, you are often able to solve most programming problem you face. But the way in which this is done is not really Python-ic<

8条回答
  •  名媛妹妹
    2021-01-31 23:41

    The same way you get fluent in any language - program a lot.

    I'd recommend working on a project (hopefully something you'll actually use later). While working on the project, every time you need some basic piece of functionality, try writing it yourself, and then checking online how other people did it.

    This both lets you learn how to actually get stuff done in Python, but will also allow you to see what are the "Pythonic" counterparts to common coding cases.

提交回复
热议问题