1樓:匿名使用者
client.connect(("localhost",6969))提示告訴復你,connect方法不能接制收bai元組物件作du為引數,("localhost",6969)這樣是一個zhi元組修改為dao
client.connect("localhost",6969)
2樓:陽光的雷咩咩
你在哪看到這樣的寫法的connect(("localhost",6969))
關於python的菜鳥問題
3樓:匿名使用者
def print_all(f): #定義一個函
數print_all,接受一個引數f
print f.read() #這個函式執行f.read()
def rewind(f): #定義一個函式rewind,接受一個引數f
f.seek(0) #f.seek(0)將f的檔案指標恢復到檔案開頭
def print_a_line(line_count, f): #定義一個函式print_a_line,有兩個引數line_count,f
print line_count, f.readline()
print "first let's print the whole file: \n"
print_all (current_file) #將current_file作為引數呼叫函式print_all,執行函式時f等於current_file
其餘函式呼叫都是差不多,就不多說了
4樓:匿名使用者
**解釋如下:
input_file作為變數,指的是一個檔案的路徑;
current_file = open(input_file)這一句獲取input_file的內容,這時候current_file 相當於f;
print_all (current_file)就是用current_file呼叫了print_all 函式,此時f=current_file;
此時,解決了提問者的第一個疑問。
def是定義函式的一個宣告語句,語法結構如下:
def functionname(para1,para2):
print "建立示例"
所以:def print_all(f):
print f.read()定義了一個print_all的函式,該函式有一個變數稱作f;print f.read()是這個函式的執行語句;
5樓:匿名使用者
這個函式的名字叫print_all(f)
print f.read() 是方法體裡要執行的語句f只是個引數,呼叫這個方法,就為這個引數賦值了。
print_all (current_file)這句其實就是將current_file賦值給f
6樓:
1. f.read() 是函式中的一個步驟, 其中f是函式的引數, 既在呼叫該函式時傳遞進來的
2. 定義了一個叫"print_all"的函式,其入口引數是"f", 其處理過程: print f.read()
python菜鳥問題
7樓:匿名使用者
python 2.x寫法
x = 16
ans = 0
while ans*ans < x:
ans = ans + 1
print ans
python 3.x寫法
x = 16
ans = 0
while ans*ans < x:
ans = ans + 1
print(ans)
8樓:喜鵲太子
在ans=ans+1 行與print ans 中插入一個空白行
如果你的python目錄是python33的話 print(ans)
9樓:小米飛貓
#!/bin/env python
x = 16
ans = 0
while ans * ans < x:
ans+=1
print ans
python對語句copy寫的格式要
求比bai較嚴格,尤其是四個空格。
不知道你print是想du放到while裡面zhi還是外面dao,姑且我認為是放到裡面。
10樓:谷歌找茬
你用的是shell模式吧?shell模式一次只能寫一句,寫多了會報錯,你可以在文字編輯器裡寫。
python新手的問題?
11樓:匿名使用者
這個是字串的切片,和列表的index類似
alp[0] 即字元『a』
alp[-1] 即字元『z』
12樓:匿名使用者
果然python新手
python 字串
python菜鳥問題,如下圖,請解釋為何答案不是「5,4,3,2」?謝謝!
13樓:is誰在看
num = 5
# 你程式結構,是順序的,不是迴圈
while num > 2:
print(num)
num -= 1
# print(num)
python菜鳥求教,python菜鳥求教一個
socket 是用c封裝的so檔案 socket.py 會import socket 的 所有東西 所有 socket 有的 socket 也會有 一般 直接內用容socket 而不用 socket python菜鳥真誠求教!因為左邊是所有的 2,k 1 不能整 除x,才返回true 素數的條件 只...
用Python生成excel,如何用Python實現exce
可以使用xlsxwriter 庫實現 如下 import xlsxwriter import sys reload sys 解決中文編碼問題 sys.setdefaultencoding utf 8 建立一個絕對路徑為.test.xlsx的excel檔案workbook xlsxwriter.wor...
關於python的問題,關於python的一個問題
import random x random.randint 0,100 for i in range 1000 print the random list is n x xset set x 轉換成抄set,這樣可以去除重複資料,後面一句可以大幅減少計算量 counts v,x.count v f...