Lesson 1 Flashcards

1
Q

Python stringlerde replace metodu?

A

Yer değiştirme metodudur.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

lower metodu?

A

Lower stringlerde geçerli, tüm harfleri küçük yapıyor

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

Upper metodu

A

Stringlerde geçerli olan harfleri büyülten metod

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

Listenin parantez şekli ?

A

Köşeli
list =[ ]

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

Sözlüklerin parantez şekli

A

Şekilli parantez

Dict = {key :value}

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

Sözlüklerde values metodu ?

A

Örnek
Dict.values()

Bu sözlüğün sadece value (değer) alır. Bir sözlükteki tüm value değerler çıkar.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

Sözlüklerde key metodu ?

A

Örnek

Dict.keys()

Bu bir sözlükteki tüm key( anahtar) değerlerini çıktı verir

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

Sözlüklerde items metodu ?

A

Dict.items()

Bu sana sözlüğü key, value şeklinde tüm değerlerin çıktısını verir bunu tuple olarak verir.
Eğer print(Dict) desen sana direkt sözlüğü verir

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

Bir sözlüğe yeni bir key value nasıl eklenir

A

Dict[ key] = value

Dict[“melisa”] = 24

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

Set özellikleri ?

A

Yinelenen değerler varsa set ile yazdırdığımızda tek bir örneğini görürüz. Değiştirilemezler ancak değerler eklenebilir silinebilir
{} şeklinde set oluşur veya set(örnek) dersek örnek artık set olur

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
11
Q

Setlerde sorted metodu

A

Bu metod seti alfabetik olarak sıralar.

sorted(set_1) gibi kullanımı var

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
12
Q

Tuple?

A

Tuple değiştirilemez, değerler eklenmez, silinmez, değişmez

Sıralıdır
Tuple fonksiyonu ile bir şeyi tuple yapabilirsin. Tuple(örnek)

Tuple () ile

How well did you know this?
1
Not at all
2
3
4
5
Perfectly