Skip to content

Instantly share code, notes, and snippets.

View nit99kumar's full-sized avatar

Nitesh Kumar nit99kumar

  • Kharagpur, West Bengal
View GitHub Profile
plugins {
application
kotlin("jvm") version "1.3.20"
}
application {
mainClassName = "org.example.MyLibrary.kt"
}
dependencies {
a = raw_input("enter filename: ")
num_of_att = int(raw_input("enter the number of attributes: "))
fob = open(a, 'a')
att = raw_input("enter attribute list: ")
tempatt = att.split(' ')
for i in xrange(num_of_att):
fob.write(tempatt[i] + "\t")
fob.write("\n")
import pygame, random, sys
from pygame.locals import *
BLACK = (0, 0, 0)
WHITE = (255, 255, 255)
BLUE = (0, 0, 255)
GREEN = (0, 255, 0)
RED = (255, 0, 0)
GREY = (190, 190, 190)
SIZE = (1024, 576)
https://raw.github.com/ravi3054/Jumble-Word-Game/master/dictionary