Tagged Questions
5
votes
3answers
55 views
Function definition like range
Suppose I wanted to write a function similar to range
Recall that range has a one argument and 2/3 argument form:
class range(object)
| range(stop) -> range object
| range(start, stop[, ...
0
votes
1answer
44 views
Python not importing modules
I've got a function here for running an external python script in another process. m is the Multiprocessing module
def run(app,WindowOffX,WindowOffY,WindowWidth,WindowHeight):
try:
...
0
votes
1answer
41 views
trying to call a string that is assigned within a function
I have set a string called 'charge' within a function but when I call 'charge' in the main body I get a traceback call saying that 'charge' is not defined. I would like to know if it is possible to ...
2
votes
1answer
24 views
Modulo-use function of sum of positive integers digits?
I created a function that sums the digits of a given positive integer:
def digit_sum(n):
tot = 0
for i in str(n):
tot += int(i)
return tot
but I know that using mod10, mod 100 ...
1
vote
3answers
56 views
Python-How to convert function argument into numeric operator/float()/int()?
What I tried to do:
Create a calculator application. Write code that will take two numbers
and an operator in the format: N1 OP N2, where N1 and N2 are floating point or
integer values, and OP ...
0
votes
1answer
37 views
Function for list elements concatenation?
I want to create a function which concatenates all the strings within a list and returns the resulting string. I tried something like this
def join_strings(x):
for i in x:
word = ...
0
votes
1answer
23 views
Python function takes N positional parameters but M were given
I am trying to call a function in the following manner:
for TestCase in sys.argv[1:]:
TestTree = ET.parse(TestCase)
Root = TestTree.getroot()
inputFile = Root[0].text
...
0
votes
1answer
55 views
Function into a Python class
I am new in Python and I wrote the following code:
class Frazione:
def __init__(self, Numeratore, Denominatore=1):
mcd=MCD(Numeratore,Denominatore)
self.Numeratore=Numeratore/mcd
...
0
votes
1answer
27 views
How do I print these return values from function in Python 3?
I have a homework assignment for raquetball simulation. I'm trying to figure out how to expand the program to account for shutouts and return the number for each player. I added a loop into the ...
2
votes
1answer
49 views
splitting up strings to x amount of characters
I am trying to make a decrypter that decrypts code from the encrypter I made. I am getting this type error when I run the code though
getcrypt = ...
1
vote
4answers
64 views
Attach a method to a class while the class is being created
I've defined two classes as follows:
class ClassModel(object):
pass
class FunctionModel(object):
attr = None
def __call__(self):
return self.attr
The idea is to create several ...
0
votes
2answers
67 views
How do I programmatically add new functions to current scope in Python?
In Python it is easy to create new functions programmatically. How would I assign this to programmatically determined names in the current scope?
This is what I'd like to do (in non-working code):
...
0
votes
1answer
47 views
Using integers with dictionary to create text menu (Switch/Case alternative)
I am working my way through the book Core Python Programming. Exercise 2_11 instructed to build a menu system that had allowed users to select and option which would run an earlier simple program. the ...
0
votes
1answer
18 views
How do you Build Random Items with Multiple Variables with Multiple Choices in Python?
What area of Python Documentation should I look into to accomplish the following:
npc_gender = ["Male","Female"]
npc_age = # trying to do random integer within a range say 18-80
npc_name_male = ...
0
votes
0answers
23 views
Python 3, merging similar functions
In python 3 I have a small portion of code that takes an object, gets values from that object and creates a list in fixed order. However, getting the values can be done in various ways which means I ...
0
votes
1answer
53 views
Python 3 - cumulative functions alternatives
I was wondering if there was a more pythonic, or alternative, way to do this. I want to compare results out of cumulative functions. Each functions modifies the output of the previous and I would like ...
0
votes
3answers
95 views
Why is this Function Returning None?
If I first enter data that is valid it works fine, but if I enter invalid data, then valid data, None is returned. Here is an example of the problem:
code:
def passwordLength(password):
if ...
1
vote
3answers
83 views
Python: What is Wrong with these two Functions?
I came across a problem within my program that I'm writing. I've narrowed down the problem to these two functions. The problem occurs when you call the function enterPasswords, enter invalid data such ...
0
votes
1answer
54 views
tkinter command to call function from another Python scirpt
I am having a few issues, calling Python functions defined in another script using tkinter. I would prefer to have a seperate script for my functions that the GUI uses when needed. At the moment I am ...
1
vote
1answer
61 views
How do I set my own global variables using input() in python 3.3?
So I have been wondering something that I am sure has a very simple answer, yet I can't seem to wrap my head around it. In a function, How do I set a global variable to perform a certain task. For ...
1
vote
0answers
120 views
Have a function time out if a certain condition is not fulfilled in time
The issue I have is that my chat client is supposed to recieve and print data from server when the server sends it, and then allow the client to reply.
This works fine, except that the entire ...
1
vote
2answers
85 views
Wrong output for function that computes the sum of the digits in an integer
I'm required to write a function that computes and returns the sum of the digits in an integer.
Here's my code:
def main():
number1=input("Enter a number: ")
number=list(number1)
i=0
...
-5
votes
2answers
102 views
How to use first function's return value in second function? [closed]
This is my code. In the first def function, I made it return column_choose, and I wanna use column_choose's value in second def function(get_data_list). What can I do? I have tried many times. But ...
2
votes
2answers
138 views
Pass dict with non string keywords to function in kwargs
I work with library that has function with signature f(*args, **kwargs).
I need to pass python dict in kwargs argument, but dict contains not strings in keywords
f(**{1: 2, 3: 4})
Traceback (most ...
1
vote
3answers
269 views
Type-Checking in Functions between Python 2.7 and Python 3.3
In my functions, I check for the types of the input so that it is valid (example - for a function that checks the primality of 'n', I don't want 'n' to be inputted as a string).
The problem occurs ...
0
votes
1answer
144 views
Program Works in Python 2.7, but not Python 3.3 (Syntax is compatible for both)
So I have the function integral(function, n=1000, start=0, stop=100) defined in nums.py:
def integral(function, n=1000, start=0, stop=100):
"""Returns integral of function from start to stop with ...
0
votes
2answers
107 views
How can the program choose between two function in python?
I've got a Python 3.2 program that computes the value of an investment carried any amount of time periods into the future, it may work with both simple and compound interest. The thing is that I've ...
2
votes
2answers
286 views
Global and local variables in Python
I am learning Python. A book on Python 3 says the following code should work fine:
def funky():
print(myvar)
myvar = 20
print(myvar)
myvar = 10
funky()
But when I run it in Python 3.3, ...
0
votes
0answers
19 views
Varying number of function inputs using var = False in definition. I can do this, right?
Here's a look at the problem code.
def color(a_color, alpha = False):
if alpha != False:
that_tuple = COLOR_LIST[change_name(a_color.lower())]
return that_tuple[0], ...
1
vote
2answers
156 views
Python 3 syntax error with def function((x,y))
So I'm analyzing this code and I have reason to believe this was coded with python 2.X but I'm using 3.2 and would like to convert it so that it would work.
The first error I encountered was with a ...
0
votes
2answers
88 views
Sending self classes Tkinter Entry data to a function outside of its scope
I have setup two entry boxes, and the goal is to press a button and apply some type of math to the input numbers using a function outside of the scope. (I have left out the packing and framing code ...
1
vote
3answers
43 views
python3 function correctness
I have a function below:
def f(s1,s2):
s=''
for i in range(min(len(s1),len(s2))):
s = s1[i] + s2[i]
if len(s1) < len(s2): return s + s2[len(s1):]
...
0
votes
2answers
110 views
Turtle graphics not drawing from function
using the function below, and input which is split on space (i.e. forward 20), turtle will perform the color and write functions but using forward, back, right or left does nothing, just brings up a ...
0
votes
3answers
122 views
Issue with a “Pyramid” Generator (in IDLE)
For my Programming class, I have to create a program that creates a "pyramid" (in IDLE) like the following sequence:
1
1 2 1
1 2 4 2 1
1 2 4 8 4 2 1
...
0
votes
3answers
138 views
Printing individual list objects within __str__ using .format(**self.__dict__)
I'm printing a stat block for a game character object. In a previous question I was demonstrated a way to display the object data using in the __str__ function like so:
def __str__(self):
if ...
3
votes
5answers
91 views
Better understanding of __str__ usage
I'm trying to better understand the proper usage of the __str__ function.
Let's say I have a very simple class called Character for use in a game that looks like this:
class Character(object):
""" A ...
0
votes
2answers
367 views
Python program to calculate pi with the following sequence: pi = 4/1 - 4/3 + 4/5 - 4/7…etc [closed]
Just stuck on this problem and I've tried many ways but this is what I have so far. Not sure what's wrong with it.
def main(n):
summ=0
pipe=0
for i in range(1, n, 4):
x = 4/i
...
0
votes
1answer
51 views
python3 recursive correctness for my function
I need help on a problem. For example I have the following dictionary named planets:
{'Mercury': {'Orbital Radius': '38001200', 'Radius': '243900.7',
'Period': '87.9691'}, 'Ariel': {'Orbital Radius': ...
-1
votes
3answers
132 views
how to make a function recursive [closed]
i have this huge function and i am wondering how to make it recursive. i have the base case which should never come true, so it should always go to else and keep calling itself with the variable t ...
0
votes
0answers
86 views
Guess the Word confused about functions [closed]
My python guess the word game trying to redefine entirely breaking code up into function calls may help.
As usual I write out bad broken confused code and come to you guys for help.
I'm worried that ...
0
votes
0answers
114 views
Input specific calculator python 3 [closed]
I need to create a program in python that will prompt the user for input in the following format
operand operation operand
Or
operand operation operand operation operand
For example, 3 * 5.34 + ...
0
votes
4answers
83 views
Keep getting syntax error. What do I need to do?
I am trying to get my function to take two arguments, and return their sum. Am I going about this the right way? This is what I have so far:
def my_sum(a, b):
sum = a + b
def main():
a = ...
1
vote
1answer
73 views
Distinguishing argument value of `None` from the default parameter value of `None` [duplicate]
Possible Duplicate:
Is there any way to know if the value of an argument is the default vs. user-specified?
python - returning a default value
It is standard practice in Python to use ...
0
votes
2answers
94 views
Python 3: Storing a range in a list to be used in a function? [closed]
I need to create a list of every number until a very large specific number. This list of numbers then needs to go through a function I created that will spit back out every number that returns True. ...
7
votes
5answers
176 views
How to prove that parameter evaluation is “left to right” in python
Ok i know its kinda weird question but...
For example in javascript we could write a program like this:
var a = 1;
testFunction(++a, ++a, a);
function testFunction(x, y, z){
...
2
votes
2answers
69 views
Using function objects as a dictionary keys
I am using function objects as dictionary keys. I am doing that because I need to cache the result of these functions. This is roughly the code I am using:
# module cache.py:
calculation_cache = {}
...
1
vote
2answers
99 views
Python- how to init random function
I am a beginer python learner. I am trying to create a basic dictionary where random meaning of words will come and user have to input the correct word. I used the following method, but random doesn't ...
0
votes
1answer
25 views
Using a function return for parameters of other function (in python)
So, I was wondering if it was possible to use the return information from one function as the parameters for another without using a variable. The function I am trying to use takes two parameters (and ...
0
votes
6answers
2k views
Stuck at Learnpython.org Tutorial (Regarding Functions)
I've just started learning Python a few hours ago, and there seems to be a problem that I simply can't seem to get.
They ask me to:
Add a function named list_benefits()- that returns the following ...
1
vote
4answers
177 views
How to save a function with python (3.2)
Just started learning python (3.2) and have a question. I have created a some code that creates some stats (as in health, magic etc etc) and the numbers are randomly generated. Here is the code...
...




