Ana Sayfa / Eren (Sayfa 2)

Eren

Merhabalar, Ben Eren Karadaş 1991 Gaziosmanpaşa/İstanbul Doğumluyum. Gürpınar İMKB Mesleki ve Teknik Anadolu Lisesi Veri Tabanı Programcılığını bitirdikten sonra Kahramanmaraş Sütcü İmam Üniversitesi Bilgisayar Programcılığı bölümünü tamamladım. Bitirme projesi olarak Yenimedya Elektronik Yayıncılık şirketinde 1 ay Bilgi İşlem bölümünde stajerlik yaptım. Mezun olduktan sonra aynı şirkette 2 yıl Bilgi İşlem sorumlusu olarak çalıştım. Şirket içerisinde ve farklı kurumlarda eğitim alarak 2 yıl sonunda Sistem bölümüne geçtim. 3 yıllık çalışmanın ardından. 1 Nisan 2016’da Haber Metre Haber Analiz şirketinde Sistem Uzmanı olarak başladım ve halen bu şirkette devam etmekteyim. Kendime ait birçok projem bulunmakta aynı zamanda danışmanlık vermekteyim. Pojelerim; www.devproje.com www.ilkisgunu.com www.sistemciler.com www.kuponyap.com www.adanademir.com www.dogukanozkan.com www.korkmazlift.com www.vtp.com.tr

Python Bitwise Operators

Bitwise operations alter binary strings at the bit level. These operations are incredibly basic and are directly supported by the processor. These few operations are necessary in working with device …

Devamını Oku..

Python Simple Mathematical Operators

Python does common mathematical operators on its own, including integer and float division, multiplication, exponentiation, addition, and subtraction. The math module (included in all standard Python versions) offers expanded functionality …

Devamını Oku..

Python Set

Operations on sets with other sets # Intersection {1, 2, 3, 4, 5}.intersection({3, 4, 5, 6}) # {3, 4, 5} {1, 2, 3, 4, 5} & {3, 4, 5, 6} …

Devamını Oku..

Python Enum

Creating an enum (Python 2.4 through 3.3) Enums have been backported from Python 3.4 to Python 2.4 through Python 3.3. You can get this the enum34 backport from PyPI. pip …

Devamını Oku..

Python Date Formatting

Time between two date-times from datetime import datetime a = datetime(2016,10,06,0,0,0) b = datetime(2016,10,01,23,59,59) a-b # datetime.timedelta(4, 1) (a-b).days # 4 (a-b).total_seconds() # 518399.0 Outputting datetime object to string Uses …

Devamını Oku..

Date and Time

Parsing a string into a timezone aware datetime object Python 3.2+ has support for %z format when parsing a string into a datetime object. UTC offset in the form +HHMM or -HHMM …

Devamını Oku..

Python Indentation

Simple example For Python, Guido van Rossum based the grouping of statements on indentation. The reasons for this are explained in the first section of the “Design and History Python …

Devamını Oku..

Python Data Types

Data types are nothing but variables you use to reserve some space in memory. Python variables do not need anexplicit declaration to reserve memory space. The declaration happens automatically when …

Devamını Oku..