Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

5
votes
2answers
2k views

Is there a Python-Challenge for beginner?

The known Python-Challenge is quite difficult. Is there a much easier alternative for training my programming skills?
3
votes
3answers
118 views

Python Challenge #2 - For loop problem

Python Challenge #2 Answer I found FILE_PATH = 'l2-text' f = open(FILE_PATH) print ''.join([ t for t in f.read() if t.isalpha()]) f.close() Question: Why is their a 't' before the for loop t for ...
2
votes
1answer
37 views

Evaluating Python Code From the CAPI and getting Output

I'm trying to emulate code.InteractiveInterpreter from the embedded Python C API. I'm using PyEval_Evalcode to evaluate the user input. I am trying to evaluate user input in the interpreter and return ...
1
vote
1answer
75 views

Python Challenge - Level 5 , almost there

i am in level 5 now, i think that exmaple of whare i am stuck is the best here, the pickle content is: [(' ', 95)] [(' ', 14), ('#', 5), (' ', 70), ('#', 5), (' ', 1)] [(' ', 15), ('#', 4), (' ', ...
1
vote
3answers
144 views

Does this regex do what I think it does?

I'm attempting to do the Python challenge. I'm currently stuck on problem #3. The problem gives you a bunch of text, and tells your to extract any lowercase letter surrounded by exactly 3 uppercase ...
1
vote
4answers
346 views

Python - print “x” “y” times when passed in a list of [x,y]

python n00b here doing the pythonchallenge, stuck on middle of a level right now. ex: ([' ', 10], ['#', 20]) How do I print space 10 times with python? I've tried many things, but none worked... ...
1
vote
1answer
237 views

Adding string to end of URL

To practise some more bits of python I've been having a go at the challenges on pythonchallenge.com In brief, this challenge as a first step requires one to load an html page from a url with a number ...
1
vote
2answers
1k views

Python-Challenge Level 3

The questions is: One small letter, surrounded by EXACTLY three big bodyguards on each of its sides. I wrote this code and get an answer. I thougt it would be correct, but it doesn't work. Can anybody ...
0
votes
1answer
57 views

how to prevent python from printing the binary sign

I am need to print the comments of files inside a zip file : import zipfile def info_zip(archive_name): with zipfile.ZipFile(archive_name) as challenge: for info in challenge.infolist(): ...