笨方法学习Python21-30
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了笨方法学习Python21-30相关的知识,希望对你有一定的参考价值。
21、函数可以返回东西
def add(a, b): print "ADDING %d + %d" % (a, b) return a + b age = add(30, 5) print "Age: %d" % age
[[email protected] 21-40]# python t21.py
ADDING 30 + 5
Age: 35
将函数配上参数值赋值给变量age
22、到现在你学到了哪些东西
= #赋值
print #打印
\ #转义符
%r #格式化任意字符串
%s #格式化字符串
%d #格式化数字
#__coding__:utf-8 #编码声明,表示此源程序是utf-8编码的
+ - * / % #加减乘除取余
raw_input() #从控制台输入任意字符
input() #从控制台输入字符(要加'')
from sys import argv #从sys模组里导入库argv
print """
""" #以自定义格式输出
open(file, 'rw') #打开文件
file.read() #读取文件
file.write() #写入文件
file.close() #关闭文件
\n #换行
from os.path import exists #从os.path模组中导入库exists
print "%r" exists(file) #检查file文件有没有存在,存在未True,不存在为False
len(indata) #检查indata文件内部有多少字节
def #函数
def print(*args): #定义函数,多个参数
f.seek(0) #
f.readline() #读取一行数据
return #返回值,可使用函数赋值给变量
以上是关于笨方法学习Python21-30的主要内容,如果未能解决你的问题,请参考以下文章