Learn Python Basics for Data Analysis6 hoursEasyLicense Free online content available in this course. course.header.alt.is_certifying Got it! Last updated on 8/2/23 Install Python and Anaconda Take Your First Steps with Jupyter Notebook Declare a Variable Handle Variable Types Write Your Own Functions Object-Oriented Programming Quiz: Handle Fundamental Functions and Objects Create Collections to Store Your Objects Control Your Code With Conditional Structures Choose the Appropriate Loop Quiz: Structure Your Code Within a Project Familiarize Yourself With Python Modules and Libraries Manipulate Random Numbers With the Random Module Quiz: Use Specialized Python Libraries Structure Your Code Within a Project Evaluated skillsStructure your code within a projectQuestion 1How can you change the following num variable: Into: num[2] = 'two'num[1] = 'two'num['two'] = 2num['two'] = '2'Question 2Which of the following four statements about lists in Python is true?All items of a list must be of the same type.A list can contain any type of object except another list.These two lists are equivalent: ['a', 'b', 'c'] and ['c', 'a', 'b'].A list has no conceptual size limit!Question 3Which of the following statements is false about collections?A tuple is an ordered object.A list can be modified.A dictionary is not mutable.A tuple is defined with parentheses. Ever considered an OpenClassrooms diploma?Up to 100% of your training program fundedFlexible start dateCareer-focused projectsIndividual mentoringFind the training program and funding option that suits you bestGuide meCompare training types Choose the Appropriate Loop Familiarize Yourself With Python Modules and Libraries