我是靠谱客的博主 发嗲荔枝,最近开发中收集的这篇文章主要介绍python字符串和变量拼接,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

1、使用%s

host = '192.168.0.239'
port = '9021'
view_url1 = "http://%s:%s/onlinePreview?url=" % (host, port)

2、使用{} 和format结合

method = 'GET'
duration_in_seconds = 60
expires = int(time.time() + duration_in_seconds)
localtime = time.localtime(time.time())

path = '/v1/AUTH_333104be5d78420e8491bd292afb9554/ljs/QEJ3cbicFih7QEwX6X4c'
key = b"ljs"
hmac_body = '%sn%sn%s' % (method, expires, path)

signature = hmac.new(key, hmac_body.encode(), sha1).hexdigest()

host = "http://192.168.0.230:8080"
rest_uri = "{host}{path}?temp_url_sig={sig}&temp_url_expires={expires}".format(
             host=host, path=path, sig=signature, expires=expires)

rest_uri = "{host}{path}?temp_url_sig={sig}&temp_url_expires={expires}".format(
             host=host, path=path, sig=signature, expires=expires)

最后

以上就是发嗲荔枝为你收集整理的python字符串和变量拼接的全部内容,希望文章能够帮你解决python字符串和变量拼接所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(68)

评论列表共有 0 条评论

立即
投稿
返回
顶部