Logo video2dn
  • Сохранить видео с ютуба
  • Категории
    • Музыка
    • Кино и Анимация
    • Автомобили
    • Животные
    • Спорт
    • Путешествия
    • Игры
    • Люди и Блоги
    • Юмор
    • Развлечения
    • Новости и Политика
    • Howto и Стиль
    • Diy своими руками
    • Образование
    • Наука и Технологии
    • Некоммерческие Организации
  • О сайте

Скачать или смотреть Build Your Own Notepad With Python

  • Python Station
  • 2022-07-28
  • 397
Build Your Own Notepad With Python
notepadhow to create a notepad using pythonmake notepad using tkinterHow do I create a text file in Python?make a notepad with pythonhow to create notepad using pythondevelop notepad using tkinter in pythoncreate a gui notepad in tkinternotepad project in pythonpython notepadnotepad using tkinter in pythonhow to create notepadnotepad in pythonpython projects in hindipython simple projectspython tkinter projectspython stationhindi python
  • ok logo

Скачать Build Your Own Notepad With Python бесплатно в качестве 4к (2к / 1080p)

У нас вы можете скачать бесплатно Build Your Own Notepad With Python или посмотреть видео с ютуба в максимальном доступном качестве.

Для скачивания выберите вариант из формы ниже:

  • Информация по загрузке:

Cкачать музыку Build Your Own Notepad With Python бесплатно в формате MP3:

Если иконки загрузки не отобразились, ПОЖАЛУЙСТА, НАЖМИТЕ ЗДЕСЬ или обновите страницу
Если у вас возникли трудности с загрузкой, пожалуйста, свяжитесь с нами по контактам, указанным в нижней части страницы.
Спасибо за использование сервиса video2dn.com

Описание к видео Build Your Own Notepad With Python

Build Your Own Notepad With Python

In this tutorial, i will explain you how to create your own Notepad using python and for making this Notepad projects i am using very simple python coding( Only using tkinter module for this project ).

Source Code :-

****************************************************************************
from tkinter import *
from tkinter.filedialog import *
win = Tk()
win.geometry('400x570')
win.title('Notepad')
def openfile():
file = askopenfile(mode='r',filetypes=[('filename','*.txt')])
if file is not None:
content = file.read()
text.insert(INSERT,content)
def savefile():
new_file = asksaveasfile(mode='w',filetypes=[('filename','.txt')])
if new_file is None:
return
text1 = text.get(1.0,END)
new_file.write(text1)
new_file.close()
def clearfile():
text.delete(1.0,END)
text = Text(win,font='impack 15 bold',bg='yellow',wrap=WORD)
text.pack(padx=10,pady=40)
Button(win,text='Open',font='poppins 15 bold',bg='blue',fg='white',bd=0,cursor='hand2',command=openfile).place(x=50,y=530)
Button(win,text='Save',font='poppins 15 bold',bg='green',fg='white',bd=0,cursor='hand2',command=savefile).place(x=130,y=530)
Button(win,text='Clear',font='poppins 15 bold',bg='purple',fg='white',bd=0,cursor='hand2',command=clearfile).place(x=210,y=530)
Button(win,text='Exit',font='poppins 15 bold',bg='red',fg='white',bd=0,cursor='hand2',command=lambda :exit()).place(x=290,y=530)
mainloop()

****************************************************************************


#python
#notepad
#pythonprojects
#pythonforbeginners
#pythoninhindi
#learnpython
#pythonprojectsforresume
#pythonprogramming
#pythonstation
#createnotepadwithpython
#pythonprojectsinhindi

Комментарии

Информация по комментариям в разработке

Похожие видео

  • О нас
  • Контакты
  • Отказ от ответственности - Disclaimer
  • Условия использования сайта - TOS
  • Политика конфиденциальности

video2dn Copyright © 2023 - 2025

Контакты для правообладателей [email protected]