Month: November 2019
Summary for python learning: Positive/Negative Indexes, Slicing: Lists, strings, and tuples have a positive index system: [“Mon”,…
Question:Append the first item of weekend to workdays workdays = [“Mon”, “Tue”, “Wed”, “Thu”, “Fri”] weekend…
day_temperatures ={‘morning’:(1.1,2.2,3.4),’noon’:(2.25,4.5,6.7),’evening’:(3.3,4.5,6.5)} Assign a dictionary variable day_temperatures.The dictionary should contain three keys ‘morning’,’noon’and evening and each key…
monday_temperatures=(1,4,5) >>> monday_temperatures2=[1,4,5] >>> monday_temperatures2.append(7) >>> monday_temperatures2 [1, 4, 5, 7] >>> monday_temperatures2.remove(4) >>> monday_temperatures2 [1, 5,…
Recent Comments