在我们学习python入门之后,我们就需要开始对python的基础进行学习,也就是初级阶段的学习。接下来我们来看看python的初级阶段需要学习哪些东西。
1.语法
#!/usr/bin/python # -*- coding: UTF-8 -*- str = 'Hello World!' print str # 输出完整字符串 print str[0] # 输出字符串中的第一个字符 print str[2:5] # 输出字符串中第三个至第五个之间的字符串 print str[2:] # 输出从第三个字符开始的字符串 print str * 2 # 输出字符串两次 print str + "TEST" # 输出连接的字符串
http://blog.csdn.net/u011955252/article/details/51273863
2.运算方法
for(i=1;i<=n;++i)
{
for(j=1;j<=n;++j)
{
c[ i ][ j ]=0; //该步骤属于基本操作 执行次数:n^2
for(k=1;k<=n;++k)
c[ i ][ j ]+=a[ i ][ k ]*b[ k ][ j ]; //该步骤属于基本操作 执行次数:n^3
}
}http://www.php.cn/python-tutorials-375819.html
立即学习“Python免费学习笔记(深入)”;
3.函数
XYCMS企业商城系统是一款小型的商城系统。程序作者:XY联系方式:E-mail:yang3rui@163.com QQ: 364500483该源码使用用途:ASP爱好者学习或者研究,禁止用作商业建站。网站后台路径:/admin;用户名,密码:admin v2.1功能说明:1.管理员管理:对超级管理员信息管理,可以进行添加,删除,修改等操作2.商城公告管理。后台可进行添加,修改,删除等操作3.新闻
1
def square(x): return x**2 >>> square <function square at 0x031AA230> >>> dir(square) ['__call__', '__class__', '__closure__', '__code__', '__defaults__', '__delattr__', '__dict__', '__doc__', '__format__','__get__', '__getattribute__', '__globals__', '__hash__', '__init__', '__module__', '__name__', '__new__','__reduce__', '__reduce_ex__', '__repr__', '__setattr__', '__sizeof__', '__str__', '__subclasshook__','func_closure', 'func_code', 'func_defaults', 'func_dict', 'func_doc', 'func_globals', 'func_name']
http://www.php.cn/python-tutorials-375824.html
4.模块
http://www.php.cn/python-tutorials-375825.html
5.数据流
import osnames = os.listdir(src)for name in names:
srcname = os.path.join(src, name)
fo = open(srcname, 'r') for line in fo: print linehttp://www.php.cn/python-tutorials-375827.html
以上就是初级Python的学习之路的详细内容,更多请关注php中文网其它相关文章!
python怎么学习?python怎么入门?python在哪学?python怎么学才快?不用担心,这里为大家提供了python速学教程(入门到精通),有需要的小伙伴保存下载就能学习啦!
Copyright 2014-2025 https://www.php.cn/ All Rights Reserved | php.cn | 湘ICP备2023035733号