华为机考入门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 软件工程小施同学

相关推荐
橙露4 分钟前
Seaborn 高级可视化:统计图表制作与报告导出
python
2601_954434555 分钟前
2026年专业深度测评:入门电钢琴品牌排名前五权威发布
大数据·人工智能·python
云和数据.ChenGuang8 分钟前
鸿蒙6的**星盾安全(StarShield)技术
安全·华为·harmonyos
道清茗9 分钟前
【RH294知识点汇总】第 3 章 《 管理变量和事实 》1
开发语言·python
2401_8396339110 分钟前
鸿蒙flutter第三方库适配 - 二维表格
flutter·华为·harmonyos
麒麟ZHAO11 分钟前
鸿蒙flutter第三方库适配 - Google登录演示
flutter·华为·harmonyos
shy^-^cky12 分钟前
Python OpenCV 边缘检测效果对比
python·opencv·计算机视觉·边缘检测·sobel·canny·roberts
SoraLuna12 分钟前
「鸿蒙智能体实战记录 12」快捷指令配置与真机逐条验证实现
华为·harmonyos
2401_8396339113 分钟前
鸿蒙flutter第三方库适配 - 日历网格
flutter·华为·harmonyos
2401_8396339113 分钟前
鸿蒙flutter第三方库适配 - 数据网格
flutter·华为·harmonyos