3,880
社区成员




#!/usr/bin/python$
2 #-*-coding: utf8 -*-$
3 $
4 s = input("input your name:")$
5 print "hello,%s" %s$
s = input("input your name:")$
print ("hello,%s" %s)$
[/quote]
s = input("input your name:")$
5 print ("hello,%s" %s)$
>>> s = input("input your name:")
input your name:llq
>>> print ("hello ,%s" % s)
hello ,llq
>>>
这样的
s = input("input your name:")
print('hello,', s)
s = input("input your name:")
print(s)