Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking for code must demonstrate a minimal understanding of the problem being solved. Include attempted solutions, why they didn't work, and the expected results. See also: Stack Overflow question checklist
Closed 9 years ago.
Improve this question
I have a number on int format, but I want that the same algarisms make a binary number
so I could make binary operations with that number, how can I do that?
number = 1010111
Python includes the builtin function bin() to do this.
However, this just creates a string of the binary representation. This is completely unnecessary to do any sort of "binary operations" on a number, which can all be done on a normal int.
use the builtin function bin() to output in binary and the 0b1010111 format for input.
Related
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
This question does not appear to be about programming within the scope defined in the help center.
Closed 3 months ago.
Improve this question
i hope you are doing well.
I have a question maybe it is stupid to ask rather than search.
but I looked up for a satisfactory answer.
Why leading zero is not allowed in some language, such as python.
what problems can leading zero produce?
thanks in advance!
This is not just in Python, many programming languages doesn't allow leading zeros. This is because zero is used to define if number is for example binary or octal base numbers. More about them in Python here.
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking for code must demonstrate a minimal understanding of the problem being solved. Include attempted solutions, why they didn't work, and the expected results. See also: Stack Overflow question checklist
Closed 9 years ago.
Improve this question
I have to remove this: ® Character from a string in Python.
Whole string is:
'Rainbow® Super Value Construction Paper, 12" x 18", Assorted Colors, Pack Of 100'
There is a translate method to deal with unwanted characters, but probably
string.replace('®', '')
is easier to write.
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking for code must demonstrate a minimal understanding of the problem being solved. Include attempted solutions, why they didn't work, and the expected results. See also: Stack Overflow question checklist
Closed 9 years ago.
Improve this question
I need to create a code that will take 24 scale values and save them in a txt. file, i then want to be able to recall these values and put them back into the 24 scales. can someone point me in the right direction.
Thanks
First read this :
http://docs.python.org/2/library/stdtypes.html#bltin-file-objects
then write some code and come back with concrete questions if necessary.
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking for code must demonstrate a minimal understanding of the problem being solved. Include attempted solutions, why they didn't work, and the expected results. See also: Stack Overflow question checklist
Closed 9 years ago.
Improve this question
I need help on a programming assignment. I am completely lost on this one. If anyone could help, that would be great. The programming language is in Python.
Write a function called smallest() that will take three numbers as parameters and return the smallest value. If more than one number tied for smallest, still return that smallest number. DO NOT use the built in min() Python function to do this.
6,3,5 -> 3
4,4,8 -> 4
3,7,2 -> 2
1,8,9 -> 1
9,0,6 -> 0
Well you didn't say you can't use the builtin max function, so
def smallest(*args):
return max(*args, key=lambda x:-x)
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking for code must demonstrate a minimal understanding of the problem being solved. Include attempted solutions, why they didn't work, and the expected results. See also: Stack Overflow question checklist
Closed 9 years ago.
Improve this question
I'm trying to check matches given string to the pattern.
Input may look like this: 3256-10wyput
So we've used this pattern [0-9]{4}\-[0-9a-z]{7}
I want to prepare an if statement which checks does input suit to my regex.
Pseudo code looks like that:
if regex in string:
return True
How it should look like?
Thanks for advices.
B.
You want to do a check with the re.match() function:
import re
if re.match('[0-9]{4}-[0-9a-z]{7}', '3256-10wyput'):
return True