python常用函数与用法示例

yipeiwu_com5年前Python基础

本文实例讲述了python常用函数与用法。分享给大家供大家参考,具体如下:

自定义函数实例

# 定义一个函数
def printme( str ):
  "打印任何传入的字符串"
  print str;
  return;
# 使用这个函数
printme("chtml.cn");

运行结果:

chtml.cn

删除一个文件函数实例

def dellFile(pathFile):
  import os
  filename = pathFile
  if os.path.exist(filename):
  os.remove(filename)
  print filename
  return;

python打印金子塔

def printPyramid(level):
  for i in range(level):
    print ' ' * (level-i-1) + '*' * (2*i+1)
printPyramid(5)

运行结果:

    *
   ***
  *****
 *******
*********

python写九九乘法表

print '\n9x9 Table\n'
for i in range(1, 10) :
  for j in range(1, i+1) :
    print j, 'x', i, '=', j*i, '\t',
    # print '%d x %d = %d\t' %(j, i, j*i),
  print '\n'
print '\nDone!'

运行结果:


9x9 Table

1 x 1 = 1  


1 x 2 = 2  
2 x 2 = 4  


1 x 3 = 3  
2 x 3 = 6  
3 x 3 = 9  


1 x 4 = 4  
2 x 4 = 8  
3 x 4 = 12  
4 x 4 = 16  


1 x 5 = 5  
2 x 5 = 10  
3 x 5 = 15  
4 x 5 = 20  
5 x 5 = 25  


1 x 6 = 6  
2 x 6 = 12  
3 x 6 = 18  
4 x 6 = 24  
5 x 6 = 30  
6 x 6 = 36  


1 x 7 = 7  
2 x 7 = 14  
3 x 7 = 21  
4 x 7 = 28  
5 x 7 = 35  
6 x 7 = 42  
7 x 7 = 49  


1 x 8 = 8  
2 x 8 = 16  
3 x 8 = 24  
4 x 8 = 32  
5 x 8 = 40  
6 x 8 = 48  
7 x 8 = 56  
8 x 8 = 64  


1 x 9 = 9  
2 x 9 = 18  
3 x 9 = 27  
4 x 9 = 36  
5 x 9 = 45  
6 x 9 = 54  
7 x 9 = 63  
8 x 9 = 72  
9 x 9 = 81  

Done!

读取文件内容

all_the_text = open('thefile.txt').read( )

读取文件夹里的所有文件

all_the_data = open('abinfile','rb').read( )

关于Python相关内容感兴趣的读者可查看本站专题:《Python函数使用技巧总结》、《Python面向对象程序设计入门与进阶教程》、《Python数据结构与算法教程》、《Python字符串操作技巧汇总》、《Python编码操作技巧总结》及《Python入门与进阶经典教程

希望本文所述对大家Python程序设计有所帮助。

相关文章

Python使用poplib模块和smtplib模块收发电子邮件的教程

poplib模块接收邮件 python的poplib模块是用来从pop3收取邮件的,也可以说它是处理邮件的第一步。 POP3协议并不复杂,它也是采用的一问一答式的方式,你向服务器发送一个...

Python 给定的经纬度标注在地图上的实现方法

Python 给定的经纬度标注在地图上的实现方法

博主最近发现了python中一个好玩的包叫basemap,使用这个包可以绘制地图。值得说一下的是,basemap还没有pip检索,因此不能直接使用pip install basemap,...

python执行scp命令拷贝文件及文件夹到远程主机的目录方法

系统环境centos7 python2.7 先在操作系统安装expect [root@V71 python]# vi 3s.py #!/usr/bin/python #codin...

python实现输出一个序列的所有子序列示例

python实现输出一个序列的所有子序列示例

如下所示: def sub(arr): finish=[] size = len(arr) end = 1 << size #end=2**size for in...

读取json格式为DataFrame(可转为.csv)的实例讲解

有时候需要读取一定格式的json文件为DataFrame,可以通过json来转换或者pandas中的read_json()。 import pandas as pd import j...