摘要:
# 格式化字符串--P45 format2 = "Pi with three decimals:%.3f" from math import pi print(format2 % pi) # 字符串模板 from string import Template s = Template('$x,glo 阅读全文
摘要:
print('hello,world') # name = raw_input("what is you name?") # aa # bb # cc # dd # name = input("what is your name:") name ="scott" print("your name i 阅读全文