anagram testi

This commit is contained in:
Mert Gör 🇹🇷 2023-05-17 07:46:58 +03:00
parent 9da8bd39ab
commit ef7d4f77b5
No known key found for this signature in database
GPG key ID: 2100A876D55B39B9

4
anagram-test.py Normal file
View file

@ -0,0 +1,4 @@
s = input('Birinci yazıyı giriniz:')
k = input('İkinci yazıyı giriniz:')
print(set(s) == set(k))