我知道如何打印变量和文本,但是如果要使用,我想在同一行中打印它:
print "text" MYVARIABLE
我有一个例外
预期命令
所以问题是:有一种方法可以在同一行上打印文本和变量? 谢谢
答案 0 :(得分:3)
是的!您将使用word
原语-请参见the dictionary definition here。
简而言之,您可以遵循以下语法:
print word "Count turtles: " count turtles
或
print ( word "There are " count turtles " turtles right now" )