Examples with "in Python 2" and their translation in Turks
We konden deze vermelding niet vinden. Er worden benaderende resultaten weergegeven. Controleer je spelling of stel voor deze term aan het woordenboek toe te voegen.
That's why the idiomatic way of making a shallow copy of lists in Python 2 is
Bu nedenle Python 2'deki listelerin sığ bir kopyasını yapmanın deyimsel yolu
Therefore, this script works only in Python 2.
If you want to do this in Python 2,
In Python 2, you only needed to type "print" followed by what you wanted displayed.
Python 2'de, sadece "print" ve ardından görüntülenmesini istediğin şeyi yazman yeterliydi.
The only reason it gives a syntax error is because in Python 2 print is a statement - print "yes", while in Python 3 it is a function - print("yes").
Sözdizimi hatası vermesinin tek nedeni Python 2'de bir ifade - print "yes", Python 3'te bir işlev - print("yes") olmasıdır.
The classically Pythonic way, available in Python 2 and Python 3.0-3.4, is to do this as a two-step process
Python 2 ve Python 3.0-3.4'te bulunan klasik Pythonic yöntemi, bunu iki aşamalı bir işlem olarak yapmaktır
Andere resultaten
The better option is to use the built-in function enumerate(), available in both Python 2 and 3
Daha iyi seçenek yerleşik işlevi kullanmaktır enumerate()Python 2 ve 3'te de kullanılabilir
This is exactly what happened shortly after the release of Python 2 in 2000 when the Unicode specification was finalized.
Bu, Unicode spesifikasyonu tamamlandığında, 2000 yılında Python 2'nin piyasaya sürülmesinden kısa bir süre sonra gerçekleşti.
I'm working on making Tic-Tac-Toe in Python between 2 human players, and I'm having issues getting my code to realize that a spot is already occupied.
Ben 2 insan oyuncular arasında Python Tic-Tac-Toe yapmaya çalışıyorum ve ben bir nokta zaten işgal edilmiş olduğunu fark için kodumu alma sorunları yaşıyorum.
Python 3 is now the dominant version of Python, having surpassed Python 2 in 2017, and continues to gain momentum with every release by adding key features such as
Python 3, Python'ın 2017'de Python 2'yi geçerek öne çıkan versiyonu, şuanda aşağıdaki gibi önemli özellikler ekleyerek her sürümde ivme kazanmaya devam ediyor
Python 2 has been around a lot longer, it's very solid,
Python 2 çok daha uzun süredir kullanımda ve oldukça güvenilir.
Note that this only works on python 2.
It works with Python 2 and 3.
Python 2 ve 3 ile çalışıyor.