23_python实操案例九

2022/8/6 1:52:47

本文主要是介绍23_python实操案例九,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!

 

 

任务一:

# 统计指定字符出现的次数
def get_count(s, ch):
    count = 0
    for item in s:
        if ch.upper() == item or ch.lower() == item:
            count += 1
    return count
if __name__ == '__main__':


    s = 'hellopython, hellojava, hellogo'
    ch = input('请输入要统计的字符:')
    count = get_count(s, ch)
    print(f'{ch}在{s}中出现的次数为:{count}')

 

任务二:

def show(lst):
    for i in lst:
        for item in i:
            print(item, end='\t\t')
        print()

lst = ['01', '电风扇', '美的', 500], ['02', '洗衣机', 'TCL', 1000], ['03', '微波炉', '老板', 400]
print('编号\t\t名称\t\t\t品牌\t\t单价')
show(lst)
print('------------------字符串的格式化-------------------------')
print('编号\t\t\t名称\t\t\t品牌\t\t单价')
for i in lst:
    i[0] = '0000' + i[0]
    i[3] = '¥{:.2f}'.format(i[3])
show(lst)

 



这篇关于23_python实操案例九的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!


扫一扫关注最新编程教程