This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
plugins { | |
application | |
kotlin("jvm") version "1.3.20" | |
} | |
application { | |
mainClassName = "org.example.MyLibrary.kt" | |
} | |
dependencies { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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") |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
https://raw.github.com/ravi3054/Jumble-Word-Game/master/dictionary |