0

我正在编写一个程序,该程序应该在这样的星星组成的框中打印一个单词:

************
*          *
* danielle *
*          *
************

但是,我得到以下输出:

************
*           
None *
* danielle *
*           
None *
************

我知道我一直得到“无”的输出,因为我不能在同一行上输出print一个和一个函数。string我怎么能这样做?

我的代码如下:

    def star_str(length):
    stars = '*'*length
    print stars

def spaces_str(length):
    spaces = " "*length
    print spaces

def frame_word(input_word):
    length = len(input_word)
    top_bottom_stars = length + 4
    spaces_middle = length + 2

    star_str(top_bottom_stars)
    print '*', spaces_str(spaces_middle), '*'
    print '*', input_word, '*'
    print '*', spaces_str(spaces_middle), '*'

    star_str(top_bottom_stars)

print "Please enter a word:",
input_word = raw_input()
frame_word(input_word)
4

3 回答 3

3

您的问题是由于您正在调用一个在 print 语句中打印某些内容的函数。我的建议是拥有spaces_str()star_str() 返回字符串而不是打印它。

更好的是,完全消除这些功能。" " * 40是完全可读和惯用的;将它包装在一个函数中只是要输入更多字符,而不会增加可读性。

于 2012-09-11T04:18:37.813 回答
0

在方法的末尾给出一个 return 语句而不是 print ,现在你下面的 print 将产生正确的结果

def spaces_str(length):
    spaces = " "*length
    return spaces
print '*', spaces_str(spaces_middle), '*'
于 2012-09-11T04:18:49.903 回答
-1

我会使用@kindall 和return字符串,而不仅仅是打印它,但也会指出,可以print通过使用尾随逗号来抑制语句的显式换行符:

def test_print():
    print 'one',
    print 'two',
    print 'three'

test_print()
# one two three 

那么你可以不应该写:

print '*', # suppresses newline
spaces_str() # this prints using something as above
print '*' # asterisk and newline
于 2012-09-11T08:50:22.523 回答