Home >Backend Development >Python Tutorial >What can beginners do with python code?
I recently discovered an interesting project on github, which is very suitable for beginners to learn python code.
Learning a language is very boring at the beginning. Various concepts, grammar and boring printing will make people lose the motivation to learn further.
Many students will even doubt the usefulness of learning a language after studying for a period of time, because they can never write anything and can only write some simple printing codes. (Recommended learning: Python video tutorial)
This project called geekcomputers/Python answers a question very well, that is, what can you do by learning python.
Looking carefully at the examples, we can find that we can do many interesting things by writing some simple python code, such as
Batch modify the suffix names of files
Display some information about the file
Test whether a certain folder exists, and automatically create it if it does not exist
Search Log files in all directories and automatically compressed archives
Move all files created more than 240 days ago to a certain folder
Automatically send twitter
Download the latest comics
Download videos from video websites
... .
The codes of these examples are very simple. It is recommended that you learn this way
First type these codes again
so that the code can run correctly
is Write comments on each line of code
Keep only the comments, remove the specific code, and see if you can write it
I believe that after a period of hard work, you should be able to use python proficiently to implement some simple things Interesting feature too.
For more Python related technical articles, please visit the Python Tutorial column to learn!
The above is the detailed content of What can beginners do with python code?. For more information, please follow other related articles on the PHP Chinese website!