In Python 3.6, a formatted string literal (f-string) was added to make ... a = 123 b = 'abc' print('{} and {}'.format(a, b)) # 123 and abc ...
確定! 回上一頁