Comment obtenir le numéro à la dixième place d'un entier à Python

def get_pos_nums(num):
    pos_nums = []
    while num != 0:
        pos_nums.append(num % 10)
        num = num // 10
    return pos_nums
Zing