python程序每行只能寫一條語句?
對于Python2 在print語句的最后加一個逗號,就能不打印出換行符 print 'hello',print 'world'對于Python3 可以設(shè)置end參數(shù)為空字符串 print('hello', end='')
python程序每行只能寫一條語句?
對于Python2 在print語句的最后加一個逗號,就能不打印出換行符 print 'hello',print 'world'對于Python3 可以設(shè)置end參數(shù)為空字符串 print('hello', end='')