[q]
(4) 

Python yardım

hlt1985 #1414061
Nette araştırırken python'da aşağıdaki gibi bir kod'a denk geldim. Bu nasıl çalışır, nasıl işler anlatabilecek birileri var mıdır?

product = [product for product in products if product['id'] == product_id]

Kod bloğunun tamamı:

@app.route('/azon/api/products/<int:product_id>', methods=['GET'])
def get_product(product_id):
product = [product for product in products if product['id'] == product_id]
if len(product) == 0:
return jsonify({'product': 'Not found'}),404
return jsonify({'product': product})

 

uzmanligim python degil ama diger programlama dillerini bilen biri zaten farkinda olmasa da python biliyordur kaidesine dayanarak;

bir api adresi olusturup oraya product_id adinda integer bir veri aliyor. ve altinda get_product adinda bir method var ve bu product_id adinda bir id aliyor. buna gonderilen product_id yi eldeki "products" listesi icindeki id ler ile teker teker karsilastiriyor. eger ayni id ye sahip bir product bulur ise o buldugu "product" donuyor api tarafindan. bulamaz ise bulunamadi mesaji donuyor.

o satir da specifik olarak products listesindeki tum product id lerini methoda gonderilen product_id ile karsilastiriyor. bulursa o product geri donuyor. yani pseudocode olarak "products listesindeki her bir productu dolas, eger product[id] ve product_id esit ise o product u product adi verilen degiskene ata"

yani kisaca bir url adresi olusturup o adres bir "id" aliyor ve eldeki urun listesinden o "id" ile iligli bir urun var mi diye bakiyor. var ise o urunu donuyor. yoksa bulunamadi mesaji donuyor.

emrahday

açıklama için teşekkürler ama benim anlamadığım kısım şu:

product = [product for product in products if product['id'] == product_id]

product dşye bir array tanımlayıp, parametre id ile product id eşitse buraya ekliyor. Ancak bu nasıl bir syntax'tir? İnternette detaylı açıklama bulabilir miyim?

hlt1985

Python one line function/statement/loop vs diye aratırsanız bu tarz syntaxa sahip örnekleri inceleyebilirsiniz.

reactionic

product = [product for product in products if product['id'] == product_id]

'product =' diyerek product adında bir liste yaratmak için kullanılan bu yöntem list comprehension

[product for product in products if product['id'] == product_id]

list2 = [i2 for i1 in list1 if condition]

list1 içinden sırayla elementleri alıyor ve bunlara tek tek i1 diyor. daha sonra her bir i1 için if içinde olan duruma bakıyor ve doğru olduğunda i1'i i2 olarak list2'ye ekliyor.

burada listB = [i+5 for i in listA] deseydi; if condition olmadığı için listA içinde olan tüm değerlere tek tek 5 ekleyerek (i+5) ListB'ye kaydedecekti.

archmage mahmut
1

mobil görünümden çık