适合初学者的python实际例子
最近在github上发现了一个有意思的项目,很适合初学者学习python代码。
学习一门语言刚开始的时候是很枯燥的,各种概念语法以及无聊的打印都会让人失去更进一步学习的动力。
很多同学在学习了一段时间之后甚至会怀疑学习语言的用处,因为总是写不出东西,只会写一些简单的打印代码。
这个叫做geekcomputers/Python的项目很好的回答了一个问题,就是学习python可以做什么。
仔细观察里面的例子,我们可以发现写一些简单的python代码就可以做很多有意思的事情,比如
- 批量修改文件的后缀名
- 显示文件的一些信息
- 测试某个文件夹是否存在,不存在就自动创建
- 搜索所有目录下的log文件,并自动压缩归档
- 把所有创建时间超过240天的文件移动到某个文件夹
- 自动发twitter
- 下载最新的漫画
- 下载视频网站的视频
- ......
这些例子的代码都很简单,推荐大家这样学习
- 首先照着这些代码敲一遍
- 让代码可以正确运行
- 为每一行代码写上注释
- 只保留注释,去掉具体代码,看看自己能不能写出来
相信经过一段时间的努力,你应该可以熟练使用python去实现一些简单有趣的功能了。
最后附上例子的链接。
batch_file_rename.py - This batch renames a group of files in a given directory, once you pass the current and the new extensions.
create_dir_if_not_there.py - Checks to see if a directory exists in the users home directory, if not then create it.
Fast Youtube Downloader - Downloads youtube videos quickly with parallel threads using aria2c
Google Image Downloader - Query the specific term and retrieve images from the google image database.
dir_test.py - Tests to see if the directory
testdirexists, if not it will create the directory for you.env_check.py - This script will check to see if all of the environment variables required are set.
fileinfo.py - Shows file information for a given file.
folder_size.py - Scans the current directory and all subdirectories and displays the size.
logs.py - This script will search for all
*.logfiles in the given directory, zip them using the program you specify, and then date stamp them.move_files_over_x_days.py - Moves all files over 240 days old from the source directory to the destination directory.
nslookup_check.py - This simple script opens the file
server_list.txtand then does an nslookup for each one to check the DNS entry.osinfo.py - Displays some information about the OS on which you are running this script.
ping_servers.py - This script, depending on the arguments supplied, will ping the servers associated with that application group.
ping_subnet.py - After supplying the first 3 octets this file scans the final range for available addresses.
powerdown_startup.py - This file goes through the server list and pings the machine, if it is up it will load the putty session, if it is not it will notify you.
puttylogs.py - This file zips up all the logs in the given directory.
script_count.py - This file scans the scripts directory and gives a count of the different types of scripts.
script_listing.py - This file will list all the files in the given directory, and go through all the subdirectories as well.
testlines.py - This simple script opens a file and prints out 100 lines of whatever is the set for the line variable.
tweeter.py - This script allows you to tweet text or a picture from the terminal.
serial_scanner.py contains a method called ListAvailablePorts which returns a list with the names of the serial ports that are in use in the computer, this method works only on Linux and Windows (can be extended for mac osx). If no port is found, an empty list is returned.
get_youtube_view.py - This is very simple python script to get more views for your youtube videos. Useful for repeating songs on youtube.
CountMillionCharacter.py And CountMillionCharacter2.0.py - Counts character scripts, or how much characters are present on any text based file.
xkcd_downloader.py - Downloads the latest XKCD comic and places them in a new folder called "comics".
timymodule.py - A great alternative to Pythons 'timeit' module and easier to use.
calculator.py - Uses Python's eval() function to implement a calculator.
Google_News.py - Uses BeautifulSoup to provide Latest News Headline along with news link.
cricket_live_score - Uses BeautifulSoup to provide live cricket score.
youtube.py - Takes a song name as input and fetches the youtube url of the best matching song and plays it.
适合初学者的python实际例子的更多相关文章
- 适合初学者的Python爬取链家网教程
前言 文的文字及图片来源于网络,仅供学习.交流使用,不具有任何商业用途,版权归原作者所有,如有问题请及时联系我们以作处理. 作者: TinaLY PS:如有需要Python学习资料的小伙伴可以加点击下 ...
- 为什么Python适合初学者,一般要学习多久
为什么Python适合初学者?一般Python要学习多久?很多人都觉得,Python是一门很好学的语言,非常适合入门.但更多人都是不清楚具体原因的.那么,我们不如一起来看看Python为何更适合初学者 ...
- 学习python最难的就是入门,而这文章刚好适合初学者!
Python可以应用于众多领域,如:数据分析.组件集成.网络服务.图像处理.数值计算和科学计算等众多领域.目前业内几乎所有大中型互联网企业都在使用Python,如:Youtube.Dropbox.BT ...
- [C#] Timer + Graphics To Get Simple Animation (简单的源码例子,适合初学者)
>_<" 这是一个非常简单的利用C#的窗口工程创立的程序,用来做一个简单的动画,涉及Timer和Graphics,适合初学者,高手略过~
- Vue slot-scope的理解(适合初学者)
百度上已经有很多的关于slot-scope的文章,但我感觉都是那些以前没学好,又回头学的人,他们都使用了.Vue文件,我觉得有点不适合初学者,所以我就写一篇适合初学者的. 先抛例程: <!DOC ...
- 推荐10个适合初学者的 HTML5 入门教程
HTML5 作为下一代网站开发技术,无论你是一个 Web 开发人员或者想探索新的平台的游戏开发者,都值得去研究.借助尖端功能,技术和 API,HTML5 允许你创建响应性.创新性.互动性以及令人惊叹的 ...
- 5、WPF实现简单计算器-非常适合初学者练习
Sample Calculator 这是微软社区WPF的一个示例,在源程序的基础上我进行了一点点修改,非常适合初学者练习,详细代码解释. 源程序的下载地址 http://code.msdn.micro ...
- 强烈推荐visual c++ 2012入门经典适合初学者入门
强烈推荐visual c++ 2012入门经典适合初学者入门 此书循序渐进,用其独特.易于理解的教程风格来介绍各个主题,无论是编程新手,还是经验丰富的编程人员,都很容易理解. 此书的目录基本覆盖了Wi ...
- Linux内核开发进阶书籍推荐(不适合初学者)
Linux内核开发进阶书籍推荐(不适合初学者) 很早之前就想写一篇文章总结一下Linux Kernel开发的相关资料,项目的原因,再加上家里的一些事情,一直没能找到闲暇,今天终于有些时间,希望可以完成 ...
随机推荐
- 【BZOJ4919】[Lydsy六月月赛]大根堆
题解: 我觉得数据结构写成结构体还是有必要的 因为不然一道题里出现了两个相同的数据结构由于名字很像很容易出错 另外初始化用segmenttree(){ } 首先裸的dp很好想 f[i][j]表示在i点 ...
- BZOJ4994 [Usaco2017 Feb]Why Did the Cow Cross the Road III 树状数组
欢迎访问~原文出处——博客园-zhouzhendong 去博客园看该题解 题目传送门 - BZOJ4994 题意概括 给定长度为2N的序列,1~N各处现过2次,i第一次出现位置记为ai,第二次记为bi ...
- 修改idea自动生成在C盘的文件路径,以免电脑越用越卡
1.看图一步一步来 2.将原来该位置的文件剪切到你指定的路径下 3.启动idea ,选择以前的配置即可
- 037 关于pom.xml的一些问题的理解
最近在pom上出了一些问题,搞了一天才理解了一些问题,记录一下. 当在覆盖本地repository包之后,pom.xml上面出现了一个x. 当mvn->update project之后,还是有许 ...
- Python安装scrapy过程中出现“Failed building wheel for xxx”
https://www.lfd.uci.edu/~gohlke/pythonlibs/#lxml Python安装scrapy库过程中出现“ Failed building wheel for xxx ...
- python tkinter-窗体
1.导入自带的包名 import tkinter 2.创建一个窗体对象 form=Tkinter.Tk() 3.显示窗体(这句应该是所有的设置部署完最后执行的一句代码) form.mainloop() ...
- centos7.2下安装Mysql笔记
centos7.2下安装Mysql笔记 安装 MySQL 适用于 CentOS 7.0 或以后版本: yum install mariadb mariadb-server 适用于 CentOS 6.8 ...
- codeforces-1111
https://www.cnblogs.com/31415926535x/p/10397007.html codeforces 537 div2 A 题意就是给你两个字符串,然后如果s,t的对应位上的 ...
- spring的i o c简单回顾
1.springIOC是一个创建对象的容器,他负责将我们需要的对象帮我们创建出来,创建时间是:当我们从上下文环境中读取此对象时就会帮我们创建,严格意义上来讲它是一种编程思想不是一种技术. 2.依赖注入 ...
- 为什么要使用getter/setter
变量私有化的好处 1. 在setter中可以加入合法性检查,比如设置颜色的函数中,对于RGB颜色要判断其值在0~255之间. 2. 更新与被设置变量相关的其它变量的值,比如在一个潜水艇模拟系统中,改变 ...