日韩性视频-久久久蜜桃-www中文字幕-在线中文字幕av-亚洲欧美一区二区三区四区-撸久久-香蕉视频一区-久久无码精品丰满人妻-国产高潮av-激情福利社-日韩av网址大全-国产精品久久999-日本五十路在线-性欧美在线-久久99精品波多结衣一区-男女午夜免费视频-黑人极品ⅴideos精品欧美棵-人人妻人人澡人人爽精品欧美一区-日韩一区在线看-欧美a级在线免费观看

歡迎訪問 生活随笔!

生活随笔

當前位置: 首頁 > 编程语言 > python >内容正文

python

python read函数菜鸟_关于python的菜鸟问题

發布時間:2024/8/1 python 31 豆豆
生活随笔 收集整理的這篇文章主要介紹了 python read函数菜鸟_关于python的菜鸟问题 小編覺得挺不錯的,現在分享給大家,幫大家做個參考.

很簡單的代碼。出自《笨辦法學python》fromsysimportargvscript,input_file=argvdefprint_all(f):printf.read()defrewind(f):f.seek(0)defprint_a_line(line_count,f):printline_coun...

很簡單的代碼。出自《笨辦法學python》

from sys import argv

script, input_file = argv

def print_all(f):

print f.read()

def rewind(f):

f.seek(0)

def print_a_line(line_count, f):

print line_count, f.readline()

current_file = open(input_file)

print "First let's print the whole file: \n"

print_all (current_file)

print "Now let's rewind, kind of like a tape."

rewind (current_file)

print "Let's print three lines:"

current_line = 1

print_a_line(current_line, current_file)

current_line = current_line + 1

print_a_line(current_line, current_file)

current_line = current_line + 1

print_a_line(current_line, current_file)

出自《笨辦法學python》習題20 主要有兩個問題

1、 f.read() 應該是讀取 文件f的內容。但是代碼并沒有把文件賦值給f。那么他是怎么工作的?

2、def 是定義一個函數,應該怎么理解? 這段代碼是不是把print_all(f)和 print f.read()

定義了?還是 print f.read() 定義為函數,這個函數的名字叫print_all(f)?

展開

總結

以上是生活随笔為你收集整理的python read函数菜鸟_关于python的菜鸟问题的全部內容,希望文章能夠幫你解決所遇到的問題。

如果覺得生活随笔網站內容還不錯,歡迎將生活随笔推薦給好友。