博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
笨办法学Python——学习笔记2
阅读量:5042 次
发布时间:2019-06-12

本文共 1372 字,大约阅读时间需要 4 分钟。

    第15-17章文件读写,使用open,read,write,close函数,下面摘录原文的程序:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
#! /usr/bin/env python 
#coding=utf-8 
from 
sys 
import 
argv
from 
os.path 
import 
exists
script, from_file, to_file 
= 
argv
#argv类似c main(int arg,char× argv)命令行参数
 
print 
"Copying from %s to %s" 
% 
(from_file, to_file)
 
in_file 
= 
open
(from_file)
#打开文件
indata 
= 
in_file.read()
#读文件
 
print 
"The input file is %d bytes long" 
% 
len
(indata)
#实际是string的长度
 
print 
"Does the output file exist? %r" 
% 
exists(to_file)
#判断路径存在性
print 
"Ready, hit RETURN to continue, CTRL-C to abort."
raw_input
()
 
out_file 
= 
open
(to_file, 
'w'
)
out_file.write(indata)
 
print 
"Alright, all done."
 
out_file.close()
in_file.close()
可见文件读写和c语言类似,查看api手册即可。
    第18-26变量,函数。之前都是调用库函数,现在学习自己写函数。函数以def 开始,形如下:
def 
print_one(arg1): 
#注意冒号换行后是四个空格,在专用的python里用tab键实际是自动替换了
    
print 
"arg1: %r" 
% 
arg1 
#以下凡是以四个空格缩进的内容都是属于该函数
    
print 
"arg1: %r" 
% 
arg1
print 
"hello" 
#新的开始
def 
add(a, b):
#带返回值的函数
    
print 
"ADDING %d + %d" 
% 
(a, b)
    
return 
+ 
b
def 
mutireturn(a,b)
    
return 
a,b
def 
multireturn(a,b):
#python支持多返回值
    
return 
a,b
a,b
=
multireturn(
1
,
2
)
#注意返回值的数目和你接收的变量数目相等
print 
"a=%r,b=%r" 
%
(a,b)
def 
multireturn2(a,b):
    
return 
a,b,
3
a,b
=
multireturn2(
1
,
2
)
#此处数目不等返回ValueError: too many values to unpack
print 
"a=%r,b=%r" 
%
(a,b)
可见python的函数返回还是比c语言容易。

转载于:https://www.cnblogs.com/xdao/archive/2012/10/25/2740139.html

你可能感兴趣的文章
Weakness and Poorness CodeForces - 578C
查看>>
2873=老--质价比
查看>>
Oracle 存储过程简单语法
查看>>
程序员必须软件
查看>>
数值函数ROUND(四舍五入),TRUNC(不四舍五入),MOD
查看>>
[毕业生的商业软件开发之路]开发第一个Windows应用程序
查看>>
AcWing 204. 表达整数的奇怪方式 (线性同余方程组)打卡
查看>>
web api 返回数据XML JSON
查看>>
Android端百度地图API使用详解
查看>>
NavigationBar设置
查看>>
IO端口和IO内存的区别及分别使用的函数接口
查看>>
夺命雷公狗---node.js---10之POST的接收
查看>>
自定义的JavaScript定时器
查看>>
smarty对数组进行json_encode
查看>>
Django model 字段类型及选项解析(二)
查看>>
《Linux命令行与shell脚本编程大全》第十四章 处理用户输入
查看>>
189. Rotate Array 从右边开始翻转数组
查看>>
用wget命令下载jdk
查看>>
python之路 Javascript的学习
查看>>
无法远程连接MySQL数据库服务器-(1130错误)
查看>>