标签: c# python-3.x
我想在Python 3中将long转换为字节。
以下代码我在C#中使用:
long time = 7620584977 var a = BitConverter.GetBytes(time).Reverse().ToArray() // a is [0,0,0,1,198,56,230,224]
Python(3)中是否有类似的简单代码?