1
vote
1answer
68 views

How to catch printer event in python

I want to catch the signal when the printer started to print. That would be fine if you tell me how to get the path of document that will print. pywin32print looks like useful but i dont know how to ...
0
votes
0answers
36 views

Reading a .txt file from Python 3 (with an undefined amount of lines)

I am an engineering student and I'm not the best at programming, so here it goes. My goals is to compare a set of integers from a "User" to a list in a .txt file (like Notepad) and then print the word ...
3
votes
1answer
272 views

Print multiple arguments in python

This is just a snippet of my code: print("Total score for %s is %s ", name, score)) but I want it to print out: "Total score for (name) is (score)" where name is a variable in a list and score is ...
0
votes
2answers
78 views

Python lyric opener works for one file but not for the other? [closed]

I've coded a program which helps me to quickly toggle between lyrics of songs. It reads the lyrics from .lyr file and prints them out to me. Here's a simplified version, without any additional ...
0
votes
0answers
47 views

How to output python program in defferent ways?

I need to build some multiple arguments functions to output the result of program on the screen, to printer and into pdf files.(Using python 3.3) I have searched the Internet but there was nothing ...
1
vote
1answer
148 views

Print Dictionary Keys without Dictionary Name? How/why?

So I created a dictionary for setting difficulty level on a little game. diff_dict = {'easy':0.2, 'medium':0.1, 'hard':0.05} # difficulty level dict Keys are going to be the difficulty names and ...
1
vote
3answers
98 views

How to print on the same line in a loop?

I am trying to print results on the same line for a card game, here is the desired output I want: Here is what I get: Here is my code: for List in tableau: print print ("Row", ...
0
votes
2answers
67 views

Backslash character before “lines” - print function in Python3

I'm having a tough time with this issue. Every time I try to get backslashes in this program it only gives me an error. the line I want is print(day,\\month,\\year"is a magic date") but no ...
2
votes
2answers
1k views

Python print function

I began learning Python a little time ago, and I got the first problem. Here's the code: fh = open('/usr/share/dict/words') for line in fh.readlines(): print(line, end='') When I execute it in ...
1
vote
1answer
218 views

Print without space in python 3

I'm new to Python, and I'm wondering how to print multiple elements without having the extra space added in between. I want the output ab rather than a b without having to use: print("a", end="") ...
2
votes
3answers
106 views

How to print spaces between values in loop?

I am a bit new in Python so, I want to know How to put spaces between values in a print() statement for example: for i in range(5): print(i, sep='', end='') prints 012345 I would like it to ...
1
vote
3answers
983 views

python 3: print new output on same line

Questions: I want to print the looped output to the screen on the same line. How do I this in the simplest way for python 3.x I know this question has been asked for python 2.7 by using a comma at ...
2
votes
2answers
106 views

Why doesn't print() in Python 3.2 seem to be defaulting to UTF-8?

I'm writing scripts to clean up unicode text files (stored as UTF-8), and I chose to use Python 3.x (3.2) rather than the more popular 2.x because 3.x is supposed to default to UTF-8. Maybe I'm doing ...
0
votes
1answer
293 views

Recursively print diamond in python

Can anyone help me out here, I am stuck on the base cases for turning this code into a recursive function... Can't use loops in the recursive function obviously. def diamond(a): assert a > 0, ...
0
votes
2answers
239 views

How to make python 3 print('\ufeff')

>>> print('\ufeff') Traceback (most recent call last): File "<stdin>", line 1, in <module> UnicodeEncodeError: 'gbk' codec can't encode character '\ufeff' in position 0: illegal ...
0
votes
3answers
827 views

Python invalid syntax in print

Sorry I am not familar with Python... It gives me the following error message File "gen_compile_files_list.py", line 36 print 'java files:', n_src ^ SyntaxError: invalid ...
2
votes
3answers
2k views

Python 3.2 print( end='') error

I'm a born again amateur programming novice trying to learn Python 3 (3.2) using Geany on Linux. I've been trying to rework the following example in Swaroop C H's Python 3 tutorial My code is as ...
1
vote
1answer
104 views

overriding default format when printing a list of datetime objects

I have (in Python 3): print('event {} happened on these dates: {}'.format(event_name, date_list)) My date_list is a list of datetime.date objects. I would like to change the format from: event ...
0
votes
3answers
188 views

“print x,” equivalent in Python3

Basically, I want to print out a string of values in a single line, in Python2 a statement like this one would suffice: print x, How to write the same simple statement in Python3 (i.e., without ...
0
votes
1answer
99 views

py3k print significant figures

In python3 is there a nice way to set significant figures - i.e if I have a list: l = [2.2738257169723513, 2.2725769281387329, 2.3101812601089478] I can use the nice new print system and do ...
2
votes
4answers
4k views

Why would you use the return statement in Python?

I am really, really stuck. I have gotten answers but all were either vague or too complicated. I need a simple, basic definition on what the return statement is, how to use it, and differences between ...
-1
votes
6answers
356 views

How to print all of the elements in a list

I need to be able to print all of the elements in a randomly chosen list without the brackets or commas. I tried to print each element with the '+' operator but it raised an error about not being able ...
7
votes
4answers
2k views

The new print function in Python 3.x

I've heard several times that print being a function (3.x) is better than it being a statement (2.x). But why? I was a fan of it being a statement mainly because it allowed me to type two less ...
18
votes
4answers
8k views

Why is parenthesis in print voluntary in Python 2.7?

In Python 2.7 both the following will do the same print("Hello, world!") # Prints "Hello, world!" print "Hello, world!" # Prints "Hello, world!" However the following will not print("Hello,", ...
0
votes
1answer
520 views

print formatting in python 3

I am trying to print in Python 3 and am having trouble. I have a for loop in my code that looks like this: seq = input("enter DNA sequence to search: ") pat = re.compile('(.{10})(ATC.{3,6}CAG)') li = ...
0
votes
1answer
235 views

print function in python3.x?

I want to know how print function works. But I can't find print function in python3.2's source code! In python2.5 print an integer(print 100, for example), will call int_print(). Because when create ...
2
votes
4answers
3k views

Python - Remove and Replace Printed items

[Using Python 3.2] I was wondering if it was possible to remove items you have printed in python, not from the python gui but from the command propt. e.g. a = 0 for x in range (0,3): a = a + ...
-6
votes
2answers
472 views

is there pprint in python 3? [closed]

so I heard about the pprint function, but it appears to be only on python 2....is there a pprint equivalent in python 3?
3
votes
2answers
7k views

printing tab-separated values of a list

Here's my current code: print(list[0], list[1], list[2], list[3], list[4], sep = '\t') I'd like to write it better. But print('\t'.join(list)) won't work because list elements may numbers, other ...
3
votes
1answer
419 views

problem with python print function

I am trying to this function: def sleep(sec): for i in range(sec): print(".", end=" "); time.sleep(1); the problem is that it waits for the for loop to finish then it prints ...
3
votes
2answers
10k views

How to make python 3 print() utf8

How to make python 3 (3.1) to print("Some text") to stdout in utf8 ... or how to output raw bytes.. Test.py TestText = "Test - āĀēĒčČ..šŠūŪžŽ" # this is UTF-8 TestText2 = b"Test2 - ...
2
votes
4answers
1k views

Deleting already printed in Python

For practice, I'm trying to do some stuff in Python. I've decided to make a simple hangman game - I'm not making a GUI. The game would start with a simple input(). Now, I'd like next line to, beside ...
7
votes
1answer
569 views

How do I print to the OS's default printer in Python 3 (cross platform)?

I have a Python 3 script that is going to be doing some regex substitution on some Rich Text Files (rtf) and I would like to be able to print out a whole directory's files on Windows, Linux, and Mac. ...
0
votes
3answers
2k views

Why is this invalid syntax?

Why is this complaining about an invalid syntax? #! /usr/bin/python recipients = [] recipients.append('chris@elserinteractive.com') for recip in recipients: print recip I keep getting: File ...
12
votes
3answers
10k views

python 3.0, how to make print() output unicode?

I'm working in WinXP 5.1.2600, writing a Python application involving Chinese pinyin, which has involved me in endless Unicode problems. Switching to Python 3.0 has solved many of them. But the ...