1. 程式人生 > >Python-8-print和import進階

Python-8-print和import進階

pen func 逗號 fun mat pytho another oob print

1.打印多個參數 用逗號隔開: >>> print(‘Age:‘, 42) Age: 42 參數之間自動插入了一個空格字符 >>> name = ‘Gumby‘ >>> salutation = ‘Mr.‘ >>> greeting = ‘Hello,‘ >>> print(greeting, salutation, name) Hello, Mr. Gumby 如果greeting中不包含逗號,可以這樣: print(greeting + ‘,‘, salutation, name) 可以自定義分隔符 >>> print("I", "wish", "to", "register", "a", "complaint", sep="_") I_wish_to_register_a_complaint 也可以自定義結束字符串,默認為換行符 print(‘Hello,‘, end=‘‘) print(‘world!‘) 上述代碼打印Hello, world! 2.導入時重命名 從模塊導入,有以下幾種方式 import somemodule from somemodule import somefunction from somemodule import somefunction, anotherfunction,yetanotherfunction from somemodule import * 當兩個模塊都包含函數open,可以用第一種方式導入並這樣使用: module1.open(...) module2.open(...) 也可以這樣用as指定別名 下邊是模塊的別名 >>> import math as foobar >>> foobar.sqrt(4) 2.0 下邊是函數別名 >>> from math import sqrt as foobar >>> foobar(4) 2.0

Python-8-print和import進階