Python基础入门练习14

Python基础入门练习14,第1张

编写程序计算字符串的字符编码总和 描述

取出字符串的每一个字符求ASCII码并求和‪‬‪‬‪‬‪‬‪‬‮‬‭‬‪‬‪‬‪‬‪‬‪‬‪‬‮‬‪‬‭‬‪‬‪‬‪‬‪‬‪‬‮‬‪‬‫‬‪‬‪‬‪‬‪‬‪‬‮‬‪‬‮‬‪‬‪‬‪‬‪‬‪‬‮‬‭‬‫‬‪‬‪‬‪‬‪‬‪‬‮‬‪‬‭‬

输入输出示例
输入输出
示例 1
Hello World!
The sum for string 'Hello World!' is 1085
s = input('Enter a String: ')
total = 0
for c in s:
    total = total + ord(c)
print("The sum for string '" + s + "' is " + str(total))
# 方案2
def method2():
    s = input('请输入一串字符:')
    if s == ''.join(reversed(s)):
        print(s, '是回文')
    else:
        print(s, '不是回文')

method2()

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/langs/921961.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-05-16
下一篇 2022-05-16

发表评论

登录后才能评论

评论列表(0条)

保存