Python3.4版本中的输出为print,但是如果直接调用print 'Hello,world'会提示缺少括号,在以前的版本中这样是可以的。
print('Hello,world',file=stderr),通过file=来重定向
在输出格式化时形式为
print('%s %s' %('hello', 'world'))
输入为input ,如果直接调用raw_input会提示未定义的函数,这个函数在以前的版本中是行得通的
Python3.4版本中的输出为print,但是如果直接调用print 'Hello,world'会提示缺少括号,在以前的版本中这样是可以的。
print('Hello,world',file=stderr),通过file=来重定向
在输出格式化时形式为
print('%s %s' %('hello', 'world'))
输入为input ,如果直接调用raw_input会提示未定义的函数,这个函数在以前的版本中是行得通的