华为机考入门python3--(0)模拟题2-vowel元音字母翻译

分类:字符串

知识点:

  1. 字符串转list,每个字符成为list中的一个元素 list(string)

  2. 字符串变大小写 str.upper(), str.lower()

题目来自【华为招聘模拟考试】

python 复制代码
# If you need to import additional packages or classes, please import here.

def func():

    # please define the python3 input here. For example: a,b = map(int, input().strip().split())
    sentence = input().strip()
    my_list = list(sentence)
    # ['w', 'h', 'o', ' ', 'l', 'o', 'v', 'e']
    # print(my_list)
    
    vowels = ('a','e','i','o','u','A','E','I','O','U')
    new_my_list = []
    for letter in my_list:
        if letter in vowels:
            new_my_list.append(letter.upper())
        elif letter == ' ':
            new_my_list.append(letter)
        else:
            new_my_list.append(letter.lower())
    
    # print(new_my_list)
    new_sentence = ''.join(new_my_list)
    print(new_sentence)
    # please finish the function body here.
    # please define the python3 output here. For example: print().

if __name__ == "__main__":
    func()

by 软件工程小施同学

相关推荐
KY_chenzhao24 分钟前
深入解析:Python机器学习在气象领域中的应用实例——GFS数值模式的风速预报订正。数据处理、科学计算、数学建模、数据挖掘和数据可视化
python·机器学习·数学建模·气象
MC何失眠1 小时前
vulnhub靶场【IA系列】之Tornado
网络·python·学习·安全·web安全·网络安全
小爬虫程序猿1 小时前
利用Python爬虫按图搜索1688商品(拍立淘):开启智能购物新体验
爬虫·python·图搜索算法
对自己不够狠1 小时前
HarMonyOS使用Tab构建页签
前端·华为·harmonyos
数据小小爬虫1 小时前
利用Python爬虫按图搜索1688商品(拍立淘)的探索之旅
爬虫·python·图搜索算法
不会玩技术的技术girl1 小时前
获取按图搜索淘宝商品(拍立淘)API接口用Java示例解释说明
java·python·图搜索算法
Q_27437851092 小时前
django基于Python的汽车销售管理系统的设计与实现
java·python·django·汽车
汐ya~2 小时前
python-PC应用自动化操作
运维·人工智能·python·自动化
watersink2 小时前
基于华为atlas的重车(满载)空车(空载)识别
华为
网安大师兄2 小时前
网络安全(黑客)——自学2025
linux·网络·python·安全·web安全·网络安全·密码学