python 基础应用3

Posted 寂*凉

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python 基础应用3相关的知识,希望对你有一定的参考价值。

1、使用while 、for循环分别打印字符串s = ‘fsufhjshh3hf‘中每一个元素。

#使用while 、for循环分别打印字符串s = ‘fsufhjshh3hf‘中每一个元素。
s = fsufhjshh3hf
for i in s:
    print(i)
或
index = 0
while 1:
    print(s[index])
    index += 1
    if index == len(s):
        break# f s u f h j s h h 3 h f

2、如:content = input(‘请输入内容:‘) #如用户输入:5+9或5 +9或 5 + 9,然后进行分割再进行计算·。

#如:content = input(‘请输入内容:‘)   #如用户输入:5+9或5  +9或  5  +  9,然后进行分割再进行计算·。
content = input(请输入内容:)
index = content.split(+)
a = index[0].strip()
b = index[1].strip()
sum = int(a)+int(b)#      5    +   9
print(sum) #14

#如:content = input(‘请输入内容:‘)   #如用户输入:5+9或5  +9或  5  +  9,然后进行分割再进行计算·。
content = input(请输入内容:).strip()
index = content.find("+")
a = int(content[0:index])
b = int(content[index+1:]) #      5    +   9
print(a+b)   #14

 

#n个数叠加
content = input(请输入内容:).strip()
index = content.split(+)
sum = 0
for i in index:
    sum+=int(i)  #  2  + 8  +  7   
print(sum)#17

 3、任意输入一串文字+数字 统计数字个数。

#任意输入一串文字+数字 统计数字个数。
s = input(请输入:)
count = 0
for i in s:
    if i.isdigit():
        count += 1#d2qgqtr76768yduqgdy3
print(count)#7

 

以上是关于python 基础应用3的主要内容,如果未能解决你的问题,请参考以下文章

我在哪里更改此 Python 代码片段以将临时文件保存在 tmp 文件夹中?

Python 函数声明和调用

[Python]常用代码块

人工智能海洋学基础及应用(讲义)Python代码

JSP基础

python之基础篇——模块与包