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.
次のASCII16進文字列「4a65737573」があるとします。一定量の文字をラップしながら、常に2ずつインクリメントして、それを反復処理するにはどうすればよいですか。つまり、4a65、6573、7375 .. ..
これはそれを行う必要があります:
In [218]: mystr = "4a65737573" In [219]: for i in range(0, len(mystr), 2): .....: print mystr[i:i+4] .....: 4a65 6573 7375 7573 73