So, I would like to print a string with an exclamation mark at the end of the statement but without any space between the last word and the exclamation mark. For instance:
name = raw_input( Insert your name: )
现在,我要 p:
你的名字是约翰!
因此,第一类:
print Your name is , name, !
我也回过来:
页: 1
我想做的是清除“John”和“前导”之间的空间。
任何想法?