Notice: Function _load_textdomain_just_in_time was called incorrectly. Translation loading for the spbsm domain was triggered too early. This is usually an indicator for some code in the plugin or theme running too early. Translations should be loaded at the init action or later. Please see Debugging in WordPress for more information. (This message was added in version 6.7.0.) in /home/rjsrsxcg/public_html/wp-includes/functions.php on line 6121
kodcafe.com

PYTHON iki sayı toplama kodu

print("Python ile klavyeden girilen üç sayıyı toplayan program")sayi1 = int(input("1. Sayıyı giriniz = "))sayi2 = int(input("2. Sayıyı giriniz = "))sayi3 = int(input("3. Sayıyı giriniz =...

PYTHON İMAGE RESMİ GÖSTERME

İlk derslerimizden python da resim ekleme resim açma kodunu yazdık.. from PIL import Image# Load an imageimg = Image.open('D:/pyton/proje1/resim1.jpg')# Display the imageimg.show()...

Mysql de Kullanıcı İşlemleri

 CREATE USER : Kullanıcı oluşturma CREATE USER user_specification [, user_specification] … user_specification: user [IDENTIFIED BY [PASSWORD] ‘password‘ | IDENTIFIED WITH auth_plugin [AS ‘auth_string‘]  ...

Mysql de Fonksiyon Komutları (Function)

MYSQL de fonksiyonlar (Function) ABS() : Girilen sayının mutlak değerini verir. SELECT ABS(sayı); BIT_COUNT() : Girilen sayıda kaç tane bit kullanıldığını gösterir.. SELECT BIT_COUNT(sayı); Select...

Mysql de SQL Komutları

● CREATE DATABASE – creates a new database ● CREATE TABLE – creates a new table ● INSERT INTO – inserts new data into a...