给你一个字符串 a, 输出 a 中奇数位置字符构成的字符串(位置编号从 1 开始)。
例如:a='xyzwd'
a='xyzwd'
则输出:xzd
xzd
范围引用(切片)
a = 'xyzwd' print(a[::2])