Question: Write a Python list and give it the name of strName. Assign each letter in your name. Here is an example: strName=[ y, a, v,

Write a Python list and give it the name of strName. Assign each letter in your name. Here is an example: strName=[ "y", "a", "v", "u", "z", "s", "e", "l", "i", "m"]

Question 1 Using List Items in Python. Please write the results. >>len(strName). >>strName[0]. >>strName[len(strName)-1]. >>strName[len(strName)]

>>strName(0). >>strName[1]

Question 2 Write a for loop in Python to print each item of strName. Question 3 Write a while loop in Python to check each item of strName and print only the first three letters.

Write a Python code that print the course name.

Please write the results: >> numericValue = 10

>> numericValue = numericValue + numericValue >> print(numericValue)

>> strValue = 10 >> strValue = strValue + strValue >> print(strValue)

>> numericValueNew = 20. >> numericValueNew += 10 >> print(numericValueNew)

>> numericValueNew = 20 >> numericValueNew -= 10. >> print(numericValueNew)

>> numericValueNew = 20. >> numericValueNew *= 10. >> print(numericValueNew)

please do not send mixed :)

thank you

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!