Python_Print函数
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Python_Print函数相关的知识,希望对你有一定的参考价值。
# print格式化占位符
a=‘str_test1‘
b=‘str_test2‘
print(f‘a的值是{a},b的值是{b}‘) # Pyhont3+适用,2.0版本不适用
print(‘a的值是%s,b的值是%s‘%(a,b)) # %格式化
print(‘a的值是{},b的值是{}‘.format(a,b)) #
print(‘a的值是{0},b的值是{1}‘.format(a,b)) #
print(‘a的值是{1},b的值是{0}‘.format(a,b)) # 按照序号来
first_name = input(‘input your first name:‘).lower()
last_name = input(‘input your last name:‘).upper()
print(f‘hello,{first_name}. {last_name}‘) # 调用
str1 = ‘hello‘
# 字符串相关函数
print(str1.upper()) #全大写
print(str1.lower()) #全小写
print(str1.capitalize()) #首字母大写
print(str1.count(‘l‘))
以上是关于Python_Print函数的主要内容,如果未能解决你的问题,请参考以下文章