Python 字符串格式化符
____a word she can get what she ____ for.
A.With B.came
这样的填空题会让我们印象深刻,当字符串中有多个这样的“空”需要填写的时候,我们可以使用 .format()
进行批处理,它的基本使用方法有如下几种,输入代码:
print('{} a word she can get what she {} for.'.format('With','came'))
print('{preposition} a word she can get what she {verb} for'.format(preposition = 'With',verb = 'came'))
print('{0} a word she can get what she {1} for.'.format('With','came'))
这种字符串填空的方式使用很广泛,例如下面这段代码可以填充网址中空缺的城市数据:
city = input("write down the name of city:")
url = "http://apistore.baidu.com/microservice/weather?citypinyin={}".format(city)
注:这是利用百度提供的天气api实现客户端天气插件的开发的代码片段
好了,到这里你就掌握了变量和字符串的基本概念和常用方法。
下一步,我们会继续学习更深一步的循环与函数。