Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
ファイルには、35文字目以降の文字を取得したいテキストデータが含まれています
私はあなたがファイルのシーク機能を探していると信じています:
f = open('data.txt','r') f.seek(34) print f.read()