Contact: aviboots(AT)netvision.net.il
41,636 questions
54,299 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'> '''