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.
iOS 8 で廃止されたため、AudioFileReadPackets で奇妙な動作が発生しています。どのように置き換えればよいですか?
Python 3 では、次のことができます ( Extended Iterable Unpackingに関する PEP3132 も参照してください)。
a, *b = (1, 2, 3) # a = 1