《笨辦法學 Python》 學習筆記02

2021-05-31 22:59:55 字數 859 閱讀 1832

input

x = raw_input()

y = raw_input("name?")

#這句話會用 「name?」 提示使用者

z = raw_input("> ")

import

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

read and write file

txt = open("d:\text.txt")

#txt = open("d:\text.txt", 'w')

print txt.read()

txt.close()

close – 關閉檔案。

read – 讀取檔案內容。你可以把結果賦給乙個變數。

readline – 讀取文字檔案中的一行。

truncate – 清空檔案,請小心使用該命令。

write(stuff) – 將stuff寫入檔案。

笨辦法學Python 學習筆記3

第27 39章流程控制語句和列表,if.else.while,for 基本上和c語言類似,不過要注意巢狀的if.else.的關鍵字是 people 30 cars 40 buses 15 ifcars people print we should take the cars.elifcars peo...

笨辦法學Python

1.知識點 13節講的主要是module 模組 的概念,常用的語法是from xx import 依託於python強大的模組庫,使得呼叫十分輕鬆,功能十分強悍。argv叫做引數變數,可以理解為乙個包裹,在解包 unpack 的時候,將引數值賦給不同的變數名,其中第乙個變數是 隱藏 的,用來指代檔案...

笨辦法學Python筆記 前言

笨辦法學 python learn python thehard way zed a.shaw wang dingwei 注重實踐 注重能力培養 注重好習慣的養成 how to think like a computer scientist abyte of python wangdingwei 8...