The error message “Not enough segments” typically occurs when you are working with a string that is expected to have a certain number of segments separated by a delimiter, but the string does not have enough segments to satisfy the requirement. For example, suppose you have a string that represents […]
Devamını Oku
The error message “‘tuple’ object has no attribute ‘get’” is raised when you try to use the .get() method on a tuple in Python. The .get() method is a dictionary method that allows you to retrieve the value associated with a key. Tuples in Python are immutable sequences of elements, […]
Devamını Oku
PyLint is a Python static code analysis tool that helps you find potential bugs, improve code quality, and enforce coding standards. It is a free and open-source tool that can be used on any Python project. How PyLint Works PyLint analyzes your code without actually running it. It looks for […]
Devamını Oku
The break statement in Python can be used to exit a loop, either a for loop or a while loop. This can be useful for various reasons, such as when you want to stop iterating through a list if you find the value you’re looking for or to stop executing […]
Devamını Oku
Graphs are robust data structures that can represent relationships between entities. In Python, many libraries can be used to construct and manipulate graphs. Constructing Graphs in Python The NetworkX Library The NetworkX library is a popular Python library for constructing and manipulating graphs. It provides many features, such as: Code […]
Devamını Oku
Python virtual environments are a great way to isolate different projects and their dependencies. PyCharm is a powerful IDE that makes creating and managing virtual environments easy. Python Virtual Environments A Python virtual environment is a self-contained directory tree that contains all the necessary Python libraries and binaries for a […]
Devamını Oku
Bu dersimizde Python içerisinde 4 farklı Clean Code tekniğini öğreniyoruz. Format String tekniklerinden tutun Değişken atama işlemlerine kadar kod yazarken hem hatadan hem zamandan tasarruf edeceğiniz yöntemleri öğrenmeye ne dersiniz. 00:00 Giriş00:28 İlkel String Format01:06 Format Metodu02:00 String Literal02:50 Format String Metodu03:40 Aritmetik İşlem04:05 Liste Elemanları04:55 Dizileri Tuple Yapma05:30 Fonksiyonları […]
Devamını Oku
Python ile veri bilimi ve makine öğrenmesi konusunda çalışmak istiyorsak işe NumPy ve Pandas ile başlamamız gerekiyor. Çok basit bir örnek uygulama ile başlayabiliriz. Bir giriş veri setimiz var, bir işlemden geçerek bir sonuç seti oluşuyor. Bunun algoritmasını tahmin etmeye çalışıyoruz. Sigmoid fonksiyonu ile iterasyonu ayarlıyoruz. Bu temel bir yaklaşımdır.
Devamını Oku
Python ile çok basit bir ses tanıma ve metine çevirme uygulaması paylaşıyorum. PiPy üzerinden SpeechRecognition kütüphanesini kullanıyoruz. Örnek dosyanın yerini değiştirmeniz gerekiyor.
Devamını Oku
GİT ve GitHub derslerimizde Branching ile ilgili uzun bir ders hazırlıyorum. Ardından github ‘a geçeceğiz. Python derslerinde sadece bir öğrencim vardı. O da pandemi nedeniyle devam etmiyor. Onu bekliyorum. Docker , Container ve microservices ‘ler konusunda güzel bir seri hazırlıyorum. Java ve C# serisi yapmayı düşünmüyorum. Benzerleri çok var. C++ […]
Devamını Oku