日韩av黄I国产麻豆传媒I国产91av视频在线观看I日韩一区二区三区在线看I美女国产在线I麻豆视频国产在线观看I成人黄色短片

歡迎訪問 生活随笔!

生活随笔

當(dāng)前位置: 首頁 >

Learn Python The Hard Way(20)

發(fā)布時間:2025/7/14 46 豆豆
生活随笔 收集整理的這篇文章主要介紹了 Learn Python The Hard Way(20) 小編覺得挺不錯的,現(xiàn)在分享給大家,幫大家做個參考.

2019獨(dú)角獸企業(yè)重金招聘Python工程師標(biāo)準(zhǔn)>>>

Remember your checklist for functions, then do this exercise paying close?attention to how functions and files can work together to make useful stuff.

#!/usr/bin/env?python #?-*-?coding:?utf-8?-*-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?)

result:

? ? ? ? ? ? ? ? ? ? ? ? ??

Pay close attention to how we pass in the current line number each time we?run print_a_line.


轉(zhuǎn)載于:https://my.oschina.net/xtfjt1988/blog/401937

總結(jié)

以上是生活随笔為你收集整理的Learn Python The Hard Way(20)的全部內(nèi)容,希望文章能夠幫你解決所遇到的問題。

如果覺得生活随笔網(wǎng)站內(nèi)容還不錯,歡迎將生活随笔推薦給好友。