This website works better with JavaScript
Ana Sayfa
Keşfet
Yardım
Giriş Yap
radu
/
python-tutorials
İzle
1
Yıldızla
0
Çatalla
0
Dosyalar
Sorunlar
0
Değişiklik İstekleri
0
Wiki
Ağaç:
484634b3d5
Dallar
Biçim İmleri
master
python-tutor...
/
programs
/
more_list_comprehension.py
more_list_comprehension.py
77 B
Geçmiş
Ham
1
2
3
4
listone = [2, 3, 4]
listtwo = [2*i for i in listone if i > 2]
print(listtwo)