#python 58 To Print Automorphic Numbers Between 1 to n In Python | Computer Programming |#shorts #py

preview_player
Показать описание
To Print Automorphic Numbers Between 1 to n In Python Programming

An automorphic number is a number whose square ends in the same digits as the number itself.
For example:
5,6,25 are automorphic numbers.
5*5=25 // last digit is 5
6*6=36 // last digit is 6
25*25=625 // last digit is 25

#shorts #coding #python
#programming #learn_coding
Рекомендации по теме
Комментарии
Автор

Hi, I have a question, I have one list :
country = [ Australia, america, England, Spain]
If i want to choose 2 of them random for (List A) and choose 2 of them random for (List B ) and values of two lists arent same (not equal to gether)
Can You say which code should i write🥺

HunterzWorld