Posts
 
Reputation
Joined
Last Seen
Strength to Increase Rep
+0
Strength to Decrease Rep
-0
0% Quality Score
Upvotes Received
0
Posts with Upvotes
0
Upvoting Members
0
Downvotes Received
4
Posts with Downvotes
4
Downvoting Members
1
2 Commented Posts
0 Endorsements
~9K People Reached
Favorite Forums
Favorite Tags
Member Avatar for pelin

i am almost done with the hangman game but i just need to migrate it to graphics i know i need to use entrybox but i still dont know. [CODE]rom graphics import* from random import * MAX_BAD_GUESSES = 7 def readfile(): infile = open("wordlist.txt","r") contents = infile.read() lines = contents.split("\n") …

Member Avatar for Devarshi_1
0
628
Member Avatar for srk619

need some help on the coding can some plz help the question is: A year is a leap year if it is divisible by 4, unless the year is a Century, in which case it is only a leap year if it is divisible by 400. Write a function which …

Member Avatar for HiHe
0
566
Member Avatar for pelin

The question is ask the user for 20 numbers one at a time, saves the numbers in list, and then printsa 2 column table with each number in the list entered in the first column and its square root in the second column. Each column should be 6 characters wide …

Member Avatar for pelin
0
122
Member Avatar for pelin

Hi. i am trying to create deck of cards for uno game. i need to create draw and undraw functions for each card class. i dont know how to do this.. Thanks !

Member Avatar for pelin
0
6K
Member Avatar for pelin

I am trying to code the hangman game.. i have the game running but i need to attach it to graphics.py. please help it needs to be done by midnight. here is my code so far the last parts just the ideas to atach it to graphics. [CODE]from graphics import* …

Member Avatar for woooee
0
149
Member Avatar for pelin

i need to write a function changeName(name) that takes a string value as an argument. where name is in the form last,first,middle. the function should return a string that has the name in form fits,middle,last. [CODE][/CODE] name1 = input("Enter your name") def changeName(name): fields = name.split(",") return fields fields = …

Member Avatar for vegaseat
-1
90
Member Avatar for pelin

Jack loves to do jumping jacks. Create a simulation of Jack consisting of a stick figure and three buttons: start, stop, and quit. If the user clicks the start button, Jack begins jumping; if the user clicks the stop button, Jack stops jumping; if the user clicks the quit button, …

Member Avatar for pelin
0
451
Member Avatar for pelin

the question is a year is a leap if it is divisible by 4, unless it is a century year that is not devisible by 400. write a program that calculates whether a year is a leap or not [CODE][/CODE] def main(): year = eval(input("Enter a year")) if year/4 and …

Member Avatar for pelin
0
118
Member Avatar for pelin

HOW CAN I WRITE A PROGRAM THAT CALCULATES THE FIRST N NATURAL NUMBERS THAT USER ENTERS. I SHOULD USE FUNCTIONS. n = eval(input("Enter the value of n: ")) def sumN(n): for i in range(n): sum = n+i return sum sum = sumN(n) THIS IS WHAT I DID SO FAR. THANKSSS

Member Avatar for pelin
-1
133
Member Avatar for pelin

i am writing a program that reads the file i create. The file has grades and weights of grades anddd 3 person but i need to create a program that will read the information from the file, calculate and print the total average of each student given by the formula …

Member Avatar for TrustyTony
0
233
Member Avatar for pelin

i am making winter greeting card using grahics.py and i need to create a code to make it snow import random random.randint(0,199) p = Point(random.randint(0,199),random.randint(0,199)) p.setFill('white') p.draw(win) so far that what i have but noting really happened please help ! thanks !

Member Avatar for richieking
0
109
Member Avatar for tzho11

hi, right now i'm working on a program that prints parabolic shapes on the screen. And i want to be able to type a formule, and than i need python to understand that formule :? I have heard from many people that this is extremely hard But is there a …

Member Avatar for JoshuaBurleson
0
148
Member Avatar for pelin

Write a program that prompts the user for their monthly deposits and withdrawals from their checking account. After each transaction, output the balance and the amount withdrawn or deposited. At the end of the program, output a formatted table of the transactions. Use the Python format function to only display …

Member Avatar for pelin
0
361