NotesWhat is notes.io?

Notes brand slogan

Notes - notes.io

import tkinter as tk
from tkinter.scrolledtext import *
root=tk.Tk()
text = ScrolledText(root, state='normal', height=400, width=400, wrap='word', pady=2, padx=3, undo=True)
text.pack()
text.focus_set()
root.mainloop()
###########
import tkinter as tk
root =tk.Tk()
toplevel = None
def command():
global toplevel
if toplevel is None:
toplevel = Toplevel()
a=tk.Button(root, text="Button", command=command)
a.pack()
root.mainloop()

###########
from tkinter import*
import random
from tkinter import messagebox
p=Tk()
veri=0
def basari():
   messagebox.showinfo("BİLGİ!", "GİRİŞ BAŞARILI")

def basarisiz():
messagebox.showerror("UYARI!", "GEÇERSİZ BİLGİ!nLÜTFEN TEKRAR DENEYİN.")
def kontrol_et():
#kullanici adi kontrolu;
eg=e.get()
if not e.get():
messagebox.showerror("UYARI","KULLANICI ADInALANI BOŞ BIRAKILAMAZ")
elif eg=='m':
global veri
veri+=1
else:
messagebox.showerror("UYARI","KULLANICI ADIn YANLIS BIRAKILAMAZ")
#parola kontrolu
eeg=ee.get()
if not ee.get():
messagebox.showerror("UYARI","PAROLAnALANI BOŞ BIRAKILAMAZ")
elif eeg=='1':
veri+=1
else:
messagebox.showerror("UYARI","PAROLA YANLIS")
#guvenlik kodu kontrolu
eeeg=eee.get()
if not eee.get():
messagebox.showerror("UYARI","GUVENLIK KODUnALANI BOŞ BIRAKILAMAZ")
elif eeeg=='m1':
veri+=1
else:
messagebox.showerror("UYARI","GUVENLIK KODU YANLIS")
#genel kotrol
if veri==3:
messagebox.showinfo("BILGI","GIRIS BASARILI")
#if eg=='m' and eeg=='m' and eeeg=='m':
#basari()
#elif not e.get() or ee.get() or eee.get():
#messagebox.showerror("uyari","bos birakilamz")
#else:
#basarisiz()

kul_lab=Label(text='KULLANICI ADINIZ:')
kul_lab.pack()
       
e=Entry()
#eg=e.get()
e.pack()
       
par_lab=Label(text='PAROLANIZ:')
par_lab.pack()
       
ee=Entry()
ee.pack()

a = random.randint(100000,999999)
lat=Label(text=a,bg="red").pack()

res_lab=Label(text='GÜVENLİK KODU:').pack()

eee=Entry()
eee.pack()

gb=Button(text="GİRİŞ YAP",command=kontrol_et).pack()

mainloop()

###############
import pygame, sys
from pygame.locals import *

# pygame başlıyor
pygame.init()

# pencere oluşturuluyor
pencereYuzey = pygame.display.set_mode((500, 400), 0, 32)
pygame.display.set_caption('Merhaba Dünya!')

# renkleri belirliyoruz
SIYAH = (0, 0, 0)
BEYAZ = (255, 255, 255)
MAVI = (0, 0, 255)
KIRMIZI = (255, 0, 0)


# yazı karakteri
yaziKarakter = pygame.font.SysFont(None, 48)

# yazıyı oluştur
yazi = yaziKarakter.render('Merhaba Dünya!', True, BEYAZ, KIRMIZI)
yaziRect = yazi.get_rect()
yaziRect.centerx = pencereYuzey.get_rect().centerx
yaziRect.centery = pencereYuzey.get_rect().centery

# pencere yüzeyine beyaz arkaplan ekliyoruz
pencereYuzey.fill(BEYAZ)

# siyah çigi çiziyoruz
pygame.draw.line(pencereYuzey, SIYAH, (90, 90), (150, 90), 5)

# mavi daire çiziyoruz
pygame.draw.circle(pencereYuzey, MAVI, (400, 70), 30, 0)


# yazıyı pencere yüzeyinde oluşturuyoruz
pencereYuzey.blit(yazi, yaziRect)

# pencereyi ekranda oluşturuyoruz
pygame.display.update()

# oyun döngüsünü çalıştırıyoruz
while True:
    for olay in pygame.event.get():
        if olay.type == QUIT:
            pygame.quit()
            sys.exit()
###############
pragraf nasil cozulur
 https://yadi.sk/i/VRCmVsYCpmS9AA
yks denemeler
https://yadi.sk/d/iM7wyzJowJDX8g?fbclid=IwAR2xWpcOPJoYpEW3lUCvTm-1vx4C_f0xkgNAIqIcnI868Bvdcps4-Cb06M8
kodlamali lys
 https://yadi.sk/d/2cyhde4W3RqdK5
yqyinevleri kitaplari
 https://yadi.sk/d/kqlN1uOfOTLEug
ayt denemeler
https://yadi.sk/d/qnh9tuqIEHY9BA?
tum siniflar ksynak kitap
 https://yadi.sk/d/Snqu6upm3D5qoA
denemeler
 https://yadi.sk/d/iM7wyzJowJDX8g
2019 ayt deneme
 https://yadi.sk/d/qnh9tuqIEHY9BA
karekok y
https://yadi.sk/d/Vqo8VMhn3Reu5x
meb kzanim testleri
 https://yadi.sk/d/6XqzIqMH3RkiyS

https://studio.code.org/courses https://turkcekaynaklar.com/#android https://www.yazilimkodlama.com/scratch-programlama/scratch-dersleri-scratch-videolari/
http://ai2.appinventor.mit.edu/
https://www.flvto.biz/tr/
 https://belgeler.yazbel.com/python-istihza/
Trackview
www.instamoda.org
SENSİ TV HD
HİDE MAN
#################
Kaçış  Dizisi  Anlamı

’ 》Karakter dizisi içinde tek tırnak işaretini kullanabilmemizi sağlar.
”》Karakter dizisi içinde çift tırnak işaretini kullanabilmemizi sağlar.
\》Karakter dizisi içinde işaretini kullanabilmemizi sağlar.
n》Yeni bir satıra geçmemizi sağlar.
t》Karakterler arasında sekme boşluğu bırakmamızı sağlar.
u》UNICODE kod konumlarını gösterebilmemizi sağlar.
U》UNICODE kod konumlarını gösterebilmemizi sağlar.
N》Karakterleri UNICODE adlarına göre kullanabilmemizi sağlar.
x》Onaltılı sistemdeki bir sayının karakter karşılığını gösterebilmemizi sağlar.
a》Destekleyen sistemlerde, kasa hoparlöründen bir ‘bip’ sesi verilmesini sağlar.r》Aynı satırın başına dönülmesini sağlar.
v》Destekleyen sistemlerde düşey sekme oluşturulmasını sağlar.
b》İmlecin sola doğru kaydırılmasını sağlar
f》Yeni bir sayfaya geçilmesini sağlar.rKarakter dizisi içinde kaçış dizilerini kullanabilmemizi sağlar
#############
Iste rehberlerle anlasmak,rehber bulmak,tur ajansi bulmak, otel bulmak,arac bulmak hepsi bir sorun bir suru iş.

Iste bu web site ve uygulama kullanicilarin direk rehberlerle ve tur ajanslariyla iletisim kurmalarini sagliyor.
Sistem trivago gibi calisir ama bazi artilari vardir
•Her kullanicinin bir-kullanici profili-olur.Oraya kendi deneyimlerini,gezilerden kalan anilarini yazabilecek ve fotograf/video paylasabilecek.
•Baska kullanicilari takip edebilecek ve onlarla sohbet edebilecek.(deneyimlerini sorabilir,ajansin nasil oldugu hakkinda bilgi isteyebilir vb)
•Her rehberin de bir-isletme profili-olur.Oraya yeteneklerini,konustugu dilleri vb.hakkindaki seyleri ve yapabildiklerini yazacak.
•Ayrica yine kullanici proffili gibi deneyim/potograf/video paylasabilecek.
     
 
what is notes.io
 

Notes.io is a web-based application for taking notes. You can take your notes and share with others people. If you like taking long notes, notes.io is designed for you. To date, over 8,000,000,000 notes created and continuing...

With notes.io;

  • * You can take a note from anywhere and any device with internet connection.
  • * You can share the notes in social platforms (YouTube, Facebook, Twitter, instagram etc.).
  • * You can quickly share your contents without website, blog and e-mail.
  • * You don't need to create any Account to share a note. As you wish you can use quick, easy and best shortened notes with sms, websites, e-mail, or messaging services (WhatsApp, iMessage, Telegram, Signal).
  • * Notes.io has fabulous infrastructure design for a short link and allows you to share the note as an easy and understandable link.

Fast: Notes.io is built for speed and performance. You can take a notes quickly and browse your archive.

Easy: Notes.io doesn’t require installation. Just write and share note!

Short: Notes.io’s url just 8 character. You’ll get shorten link of your note when you want to share. (Ex: notes.io/q )

Free: Notes.io works for 12 years and has been free since the day it was started.


You immediately create your first note and start sharing with the ones you wish. If you want to contact us, you can use the following communication channels;


Email: [email protected]

Twitter: http://twitter.com/notesio

Instagram: http://instagram.com/notes.io

Facebook: http://facebook.com/notesio



Regards;
Notes.io Team

     
 
Shortened Note Link
 
 
Looding Image
 
     
 
Long File
 
 

For written notes was greater than 18KB Unable to shorten.

To be smaller than 18KB, please organize your notes, or sign in.