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使用Flask框架获取当前查询参数的方法

本文实例讲述了Python使用Flask框架获取当前查询参数的方法。分享给大家供大家参考。具体如下: 这段代码实现Python的Flask框架下获取当前查询参数,即QueryString...

不到40行代码用Python实现一个简单的推荐系统

不到40行代码用Python实现一个简单的推荐系统

什么是推荐系统 维基百科这样解释道:推荐系统属于资讯过滤的一种应用。推荐系统能够将可能受喜好的资讯或实物(例如:电影、电视节目、音乐、书籍、新闻、图片、网页)推荐给使用者。 本质上是...

使用memory_profiler监测python代码运行时内存消耗方法

使用memory_profiler监测python代码运行时内存消耗方法

前几天一直在寻找能够输出python函数运行时最大内存消耗的方式,看了一堆的博客和知乎,也尝试了很多方法,最后选择使用memory_profiler中的mprof功能来进行测量的,它的原...

Python获取央视节目单的实现代码

本文实例讲述了Python获取央视节目单的方法。分享给大家供大家参考。具体如下: #! /usr/bin/python # -*- coding: utf-8 -*- impor...

python转换摩斯密码示例

复制代码 代码如下:CODE = {'A': '.-',     'B': '-...',   'C': '-.-.',&nb...