1. 程式人生 > >笨方法學習Python21-30

笨方法學習Python21-30

python

21、函數可以返回東西

def add(a, b):
print "ADDING %d + %d" % (a, b)
return a + b
age = add(30, 5)
print "Age: %d" % age

[root@mall 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