使用 Python3 mac 地址格式将字符串 2 与 2 分开

separate a string 2 by 2 using Python3 macadress format

我想使用类似“{}”的函数。格式(变量)
所以我可以像这样转换一个字符串:“

A1B345FS

” 我想要类似的东西:“

A1:B3:45:FS

” 我无法使用一段时间或一段时间。

我可以使用 .join(变量)吗????

我认为下面的代码可以解决问题。

import re
s = "A1B345FS"
s2=re.findall('..',s)
s3=":".join(s2)

print(s3)