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.
などの 16 進数のペアを取り、さらに操作するために個別の変数として分割する7A必要が7あります。A文字を削除しようとしておらず、区切り文字がないため、この文字列を分割する適切な方法は何でしょうか?
7A
7
A
それらを「さらに操作するために個別の変数として」分割するには:
s = "7A" firstHex, secondHex = list(s)
出力:
firstHex = 7 secondHex = A
注: 2 桁の 16 進数文字がある場合にのみ機能します。