Skip to content

Instantly share code, notes, and snippets.

View Tanmaybhujade's full-sized avatar
:octocat:

TANMAY BHUJADE Tanmaybhujade

:octocat:
  • Vellore institute of technology
  • pune
  • 23:22 (UTC -12:00)
View GitHub Profile
#this program prints Hello, world!
print("Hello,world!")
from tkinter import *
import random
root = Tk()
root.geometry('400x400')
root.resizable(0,0)
root.title('DataFlair-Rock,Paper,Scissors')
root.config(bg ='seashell3')
user_take = StringVar()
Label(root, text = 'choose any one: rock, paper ,scissors' , font='arial 15 bold', bg = 'seashell2').place(x = 20,y=70)
Entry(root, font = 'arial 15', textvariable = user_take , bg = 'antiquewhite2').place(x=90 , y = 130)
from tkinter import *
from tkinter .ttk import *
from time import strftime
root = Tk()
root.title("clock")
def time():
string = str('%I:%M:%S %P')
label.config(text=string)
label.after(1000,time)
label = Label(root, font=("ds-digital" , 80), background = "black", foreground ="cyan" )
import discord
from discord.ext import commands, tasks
import B
import os
from flask import Flask
from threading import Thread
app = Flask('')
@app.route('/')