Soru
Aşağida verilen programin ekran giktisi hangi seçenekte doğru verilmiştir? import pandas as pd not1ar= "not1":5,"not2":10,"not3":15,"not4"^n:2Theta seri=pd .Series(notlar ,index=["not1 ","not4"]) print(seri) 1 dtype: int64 05320 dtype int64 not15 not4 20 dtype: int64 not15 not210 not315 not4 20 dtype: int64 not15 not4 10 dtype: int64
Çözüm
4.6204 Voting
Pelinsu
Elit · 8 yıl öğretmeniUzman doğrulaması
Cevap
Verilen programda, bir sözlük ve bir pandas Seri oluşturulmaktadır. Sözlükte "not1", "not2", "not3" ve "not4" anahtarları ve karşılık gelen değerleri bulunmaktadır. Pandas Seri, sözlükle oluşturulmuş ve "not1" ve "not4" anahtarlarına sahip bir indeksle oluşturulmuştur. Son olarak, Seri yazdırılmaktadır.<br /><br />Ekranın doğru seçeneği:<br /><br />```<br />not1 5<br />not4 20<br />dtype: int64<br />```
Derecelendirmek için tıklayın: