【Python爬蟲】-第二周作業(yè)(笨辦法學Python13-17)

···
習題13:

參數(shù)、解包、變量

from sys import argv

script, first, second, third = argv

print("The script is called:", script)
print("Your first variable is:", first)
print("Your second variable is:", second)
print("Your third variable is:", third)
···

Paste_Image.png
# 習題14:提示和傳遞
from sys import argv
script, user_name = argv
prompt = '> '
print("Hi %r, I'm the %s script." % (user_name, script))
print("I'd like to ask you a few questions.")
print("Do you like me %s?" % user_name)
likes = input(prompt)
print("Where do you live %s?" % user_name)
lives = input(prompt)
print("What kind of computer do you have?")
computer = input(prompt)
print("""
Alright, so you said %r about liking me.
You live in %r. Not sure where that is.
And you have a %r computer.
""" % (likes, lives, computer))
Paste_Image.png

···
變量要對應,一個不能多,一個不能少
···

···

習題15:提取文件

from sys import argv

script, filename = argv
txt = open(filename)
print('Here's your file %r:' % filename)
print(txt.read())
print('Type the filename again:')
file_again = input("> ")
txt_again = open(file_again)
print(txt_again.read())

···

Paste_Image.png

···

習題16:讀寫文件

from sys import argv

script, filename = argv

print('We're going to erase %r.' % filename)
print('If you don't want that, hit CTRL-C(^C.)')
print('If you do want that, hit RETURN.')

input('?') # 輸入

print('Opening the file...') #
target = open(filename, 'w') # 打開一個文件寫入

print('Truncating the file. Goodbye!')
target.truncate() #清空目標文件

print('Now I'm going to ask you for three lines.')

line1 = input('line 1: ')# 輸入第一行
line2 = input('line 2: ') # 輸入第二行
line3 = input('line 3: ') # 輸入第三行

print('I'm going to write these to the file.') # 打印

target.write(line1) # 寫入第一行
target.write('\n') # 換行
target.write(line2)# 寫入第二行
target.write('\n') # 換行
target.write(line3) # 寫入第三行
target.write('\n') # 換行

print('And finally, we close it.')
target.close() # 關閉文件

···

Paste_Image.png

···

習題17:讀寫文件

from sys import argv
from os.path import exists

script, from_file, to_file = 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))

print('Does the output file exist? %r' % exists(to_file))
print('Ready, hit RETURN to continue, CTRL-C to abort.')
input()

out_file = open(to_file, 'w')
out_file.write(indata)

print('Alright, all done')

out_file.close()
in_file.close()

···

Paste_Image.png

得授權绪钥,非商業(yè)轉載請注明出處。

最后編輯于
?著作權歸作者所有,轉載或內容合作請聯(lián)系作者
  • 序言:七十年代末关炼,一起剝皮案震驚了整個濱河市程腹,隨后出現(xiàn)的幾起案子,更是在濱河造成了極大的恐慌儒拂,老刑警劉巖寸潦,帶你破解...
    沈念sama閱讀 211,817評論 6 492
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件色鸳,死亡現(xiàn)場離奇詭異,居然都是意外死亡见转,警方通過查閱死者的電腦和手機命雀,發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 90,329評論 3 385
  • 文/潘曉璐 我一進店門,熙熙樓的掌柜王于貴愁眉苦臉地迎上來斩箫,“玉大人吏砂,你說我怎么就攤上這事〕丝停” “怎么了狐血?”我有些...
    開封第一講書人閱讀 157,354評論 0 348
  • 文/不壞的土叔 我叫張陵,是天一觀的道長寨典。 經常有香客問我氛雪,道長,這世上最難降的妖魔是什么耸成? 我笑而不...
    開封第一講書人閱讀 56,498評論 1 284
  • 正文 為了忘掉前任报亩,我火速辦了婚禮,結果婚禮上井氢,老公的妹妹穿的比我還像新娘弦追。我一直安慰自己,他們只是感情好花竞,可當我...
    茶點故事閱讀 65,600評論 6 386
  • 文/花漫 我一把揭開白布劲件。 她就那樣靜靜地躺著,像睡著了一般约急。 火紅的嫁衣襯著肌膚如雪零远。 梳的紋絲不亂的頭發(fā)上,一...
    開封第一講書人閱讀 49,829評論 1 290
  • 那天厌蔽,我揣著相機與錄音牵辣,去河邊找鬼。 笑死奴饮,一個胖子當著我的面吹牛纬向,可吹牛的內容都是我干的。 我是一名探鬼主播戴卜,決...
    沈念sama閱讀 38,979評論 3 408
  • 文/蒼蘭香墨 我猛地睜開眼逾条,長吁一口氣:“原來是場噩夢啊……” “哼!你這毒婦竟也來了投剥?” 一聲冷哼從身側響起师脂,我...
    開封第一講書人閱讀 37,722評論 0 266
  • 序言:老撾萬榮一對情侶失蹤,失蹤者是張志新(化名)和其女友劉穎,沒想到半個月后危彩,有當?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體攒磨,經...
    沈念sama閱讀 44,189評論 1 303
  • 正文 獨居荒郊野嶺守林人離奇死亡,尸身上長有42處帶血的膿包…… 初始之章·張勛 以下內容為張勛視角 年9月15日...
    茶點故事閱讀 36,519評論 2 327
  • 正文 我和宋清朗相戀三年汤徽,在試婚紗的時候發(fā)現(xiàn)自己被綠了娩缰。 大學時的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片。...
    茶點故事閱讀 38,654評論 1 340
  • 序言:一個原本活蹦亂跳的男人離奇死亡谒府,死狀恐怖拼坎,靈堂內的尸體忽然破棺而出,到底是詐尸還是另有隱情完疫,我是刑警寧澤泰鸡,帶...
    沈念sama閱讀 34,329評論 4 330
  • 正文 年R本政府宣布,位于F島的核電站壳鹤,受9級特大地震影響盛龄,放射性物質發(fā)生泄漏。R本人自食惡果不足惜芳誓,卻給世界環(huán)境...
    茶點故事閱讀 39,940評論 3 313
  • 文/蒙蒙 一余舶、第九天 我趴在偏房一處隱蔽的房頂上張望。 院中可真熱鬧锹淌,春花似錦匿值、人聲如沸。這莊子的主人今日做“春日...
    開封第一講書人閱讀 30,762評論 0 21
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽。三九已至烟号,卻和暖如春绊谭,著一層夾襖步出監(jiān)牢的瞬間,已是汗流浹背汪拥。 一陣腳步聲響...
    開封第一講書人閱讀 31,993評論 1 266
  • 我被黑心中介騙來泰國打工龙誊, 沒想到剛下飛機就差點兒被人妖公主榨干…… 1. 我叫王不留,地道東北人喷楣。 一個月前我還...
    沈念sama閱讀 46,382評論 2 360
  • 正文 我出身青樓,卻偏偏與公主長得像鹤树,于是被迫代替她去往敵國和親铣焊。 傳聞我的和親對象是個殘疾皇子,可洞房花燭夜當晚...
    茶點故事閱讀 43,543評論 2 349

推薦閱讀更多精彩內容