Created
June 7, 2022 08:21
-
-
Save zinzinzibidi/f87fb94969f52cdda9495c73b4e90dad to your computer and use it in GitHub Desktop.
Data Types Genel Tekrar Uygulama 10 Yanıt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
sayilar_1 = {2, 4, 5, 7, 8, 10} | |
sayilar_2 = {3, 5, 7, 9, 11, 13} | |
sayilar_3 = sayilar_1.intersection(sayilar_2) | |
print(sayilar_3) | |
#ya da | |
sayilar_3 = sayilar_1 & sayilar_2 | |
print(sayilar_3) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment