Contact: aviboots(AT)netvision.net.il
40,011 questions
51,958 answers
573 users
n = 1795 third = str(n)[2] print(third) print(type(third)) x = int(str(n)[2]) print(x) print(type(x)) ''' run: 9 <class 'str'> 9 <class 'int'> '''