Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

3. Hafta cevapları. #15

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
23 changes: 23 additions & 0 deletions cevap1.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
# Soru-1:
# listem = [2,12, 9, 50, 7, 66,91,14, 143,23, 48, 19,100,71,28]
# Yukarida verilen liste ile ilgili asagidaki sorulari yanitlayiniz.
# 1-a: Kullanicidan bir sayi girmesini isteyiniz,
# 1-b: Bu sayiyi verilen listenin ilk elemani olacak sekilde listeye ekleyiniz.
# 1-c: Olusan yeni listenin icindeki tekli sayilari listeden cikarip tekli_sayilar adinda yeni bir liste olusturunuz.
# 1-d: Her iki listeyi buyukten kucuge olacak sekilde siralayip ekrana yazdiriniz.

listem = [2,12, 9, 50, 7, 66,91,14, 143,23, 48, 19,100,71,28]
sayi=int(input("Lütfen bir sayı giriniz...: "))
listem.insert(0,sayi)
print (listem)
tekSayilar=[]
listemIndex=0
for liste in listem:
if liste%2==1:
tekSayilar.append(liste)
del listem[listemIndex]
listemIndex+=1
tekSayilar.sort()
listem.sort()
print(tekSayilar)
print(listem)
21 changes: 21 additions & 0 deletions cevap2.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
# listem2 = ["Ali", "Veli", ["Ayşe", "Nazan", "Zeynep"], 34, 65, 33, 5.6,"elma","Hollanda"]

# 2-a: Verilen listenin icerisindeki "Nazan" elemanina ulasip print ediniz.
# 2-b: Listenin son elemanina ulasip, print ediniz.
# 2-c: Verilen listenin icerisindeki 34, 65, 33, 5.6 elemanlarina erisip,
# bu elemanlari yeni bir liste yapiniz.
# 2-d: Yeni listenin eleman sayisini yazdiriniz.
# 2-e: List Comprehensions (liste uretecleri) metodu ile,
# 10 elemanli bir liste olusturunuz.

listem2 = ["Ali", "Veli", ["Ayşe", "Nazan", "Zeynep"], 34, 65, 33, 5.6,"elma","Hollanda"]
print(listem2[2][1])
print(listem2[-1])
listeYeni=[]
listeYeni=listem2[3:7]
#del listem2[3:7]
print(listeYeni)
print(listem2)
print("Yeni listenin eleman sayısı : ", len(listeYeni))
copmListe=[i for i in range(1,31) if i%3==0]
print(copmListe)