9
TypeError: Python3 में एक फाइल पर लिखते समय एक बाइट्स जैसी ऑब्जेक्ट की आवश्यकता होती है, न कि when str ’की
मैंने हाल ही में Py 3.5 में माइग्रेट किया है। पायथन 2.7 में यह कोड ठीक से काम कर रहा था: with open(fname, 'rb') as f: lines = [x.strip() for x in f.readlines()] for line in lines: tmp = line.strip().lower() if 'some-pattern' in tmp: continue # ... code 3.5 में …
590
python
python-3.x
string
file
byte