دوره های حرفه ای آموزش برنامه نویسی در

تمرین تاپل ها و لیست ها در پایتون

  • نوع play_list چیست؟

                    play_list = ["آهنگ شماره 1", "آهنگ شماره 2", "آهنگ شماره 3", "آهنگ شماره 4", "آهنگ شماره 5"]
  • نوع products چیست؟

                    products = ("سیب", "موز", "پرتقال", "انبه", "کیوی")
  • آخرین عنصر از این تاپل را با استفاده از اندیس آن انتخاب کن.

                    # Create a tuple
    my_tuple = ("Apple", "Banana", "Orange", "Grapes", "Mango")
    
    # Retrieve the last item from the tuple
    last_item = my_tuple['']
    
    # Print the last item
    print(last_item)
  • خروجی این برنامه چیست؟

                    # Create a tuple
    my_tuple = ("Apple", "Banana", "Orange", "Grapes", "Mango")
    
    # Perform slicing
    sliced_tuple = my_tuple[1:3]
    
    # Print the sliced portion
    print(sliced_tuple)
  • تعداد آیتم هایی که در my_tuple است را بازیابی و نمایش بده.

                    # Create a tuple
    my_tuple = ("Apple", "Banana", "Orange", "Grapes", "Mango")
    
    # Get the length of the tuple
    tuple_length = ''(my_tuple)
    
    # Print the length of the tuple
    print("Length of the tuple:", tuple_length)
  • خروجی این برنامه چیست؟

                    my_tuple = ("Apple", "Banana", "Orange", "Grapes", "Mango")
    
    tuple_length = len(my_tuple)
    
    item = my_tuple[tuple_length - 1]
    
    print(item)
  • این فانکشن سفارشی چه چیزی را بر می گرداند؟

                    def get_student_info():
        name = 'Jane Smith'
        age = 19
        grade = 'B+'
        return (name, age, grade)
  • تاپل برگردانده شده توسط فانکشن را در متغیرهای مناسب قرار بده.

                    def get_student_info():
        name = 'Jane Smith'
        age = 19
        grade = 'B+'
        return (name, age, grade)
    
    '' = get_student_info()
    
    print('Student Name:', student_name)
    print('Student Age:', student_age)
    print('Student Grade:', student_grade)
  • محتوای students را چطور توضیح می دهید؟

                    students = [
        ("John", 20, "Computer Science"),
        ("Emily", 22, "Mathematics"),
        ("Michael", 21, "Physics"),
        ("Sarah", 19, "Biology")
    ]
  • خروجی این برنامه چیست؟

                    students = [
        ("John", 20, "Computer Science"),
        ("Emily", 22, "Mathematics"),
        ("Michael", 21, "Physics"),
        ("Sarah", 19, "Biology")
    ]
    
    student = students[0]
    
    print(student)
  • خروجی این برنامه چیست؟

                    students = [
        ("John", 20, "Computer Science"),
        ("Emily", 22, "Mathematics"),
        ("Michael", 21, "Physics"),
        ("Sarah", 19, "Biology")
    ]
    
    student = students[0]
    
    student_name = student[0]
    
    print(student_name)
  • رشته تحصیلی John را بازیابی کن.

                    students = [
        ("John", 20, "Computer Science"),
        ("Emily", 22, "Mathematics"),
        ("Michael", 21, "Physics"),
        ("Sarah", 19, "Biology")
    ]
    
    john_major = students[0]['']
    
    print(john_major)
  • رشته تحصیلی Sarah را بازیابی کن.

                    students = [
        ("John", 20, "Computer Science"),
        ("Emily", 22, "Mathematics"),
        ("Michael", 21, "Physics"),
        ("Sarah", 19, "Biology")
    ]
    
    student_major = students[''][2]
    
    print(student_major)
  • رشته تحصیلی Emily را بازیابی کن.

                    students = [
        ("John", 20, "Computer Science"),
        ("Emily", 22, "Mathematics"),
        ("Michael", 21, "Physics"),
        ("Sarah", 19, "Biology")
    ]
    
    student_major = ''
    
    print(student_major)

منتشر شده

در

,

توسط

دیدگاه‌ها

دیدگاهتان را بنویسید

نشانی ایمیل شما منتشر نخواهد شد. بخش‌های موردنیاز علامت‌گذاری شده‌اند *