首页 > 编程语言 >Python 字符串插值 All In One

Python 字符串插值 All In One

时间:2022-08-17 18:35:55浏览次数:47  
标签:__ author Python title 插值 xgqfrms 字符串

Python 字符串插值 All In One

#!/usr/bin/env python3
# coding=utf-8

__author__ = 'xgqfrms'
__editor__ = 'vscode'
__version__ = '1.0.1'
__copyright__ = """
  Copyright (c) 2012-2050, xgqfrms; mailto:[email protected]
"""

"""
  /**
   *
   * @author xgqfrms
   * @license MIT
   * @copyright xgqfrms
   * @created 2022-08-17
   *
   * @description
   * @augments
   * @example
   * @link
   *
  */
"""


# variable & case sensitive language

usename = 'xgqfrms'
UserName = 'xgqfrms'

# Python 字符串插值 ???
author = "xgqfrms"
title = "CTO"

# 字符串与变量拼接 ✅
print('

标签:__,author,Python,title,插值,xgqfrms,字符串
From: https://www.cnblogs.com/xgqfrms/p/16596326.html

相关文章