Deletion from dictionary Question Anonymous Delete Honda from the dictionary below. Cars={ "Hyundai":"Creta", "Honda":Civic, "Jeep":"Compass" } in progress 0 Python Anonymous 55 years 3 Answers 768 views
Alter dictionary Question YashikaKhurana While recording the marks, Maria mistakenly added her Physics marks as 12. Correct it to be 20. MariaMarks={ "Math":18, "Chemistry":12, "Physics":12 } in progress 0 Python 55 years 2 Answers 768 views Master
Update the dictionary Question YashikaKhurana Alexis is 23 years old. Add this to her record existing as: my_record={'name': 'alexis', 'city': 'georgia'} in progress 0 Python 55 years 1 Answer 778 views Master
Unpacking tuples Question YashikaKhurana Predict the output of the code: teams = ("MI", "CSK", "RCB") (blue, yellow, red) = teams print(blue) print(yellow) print(red) in progress 1 Python 55 years 1 Answer 795 views Master
Difference between tuples and lists. Question YashikaKhurana How does a tuple differ from a list? in progress 0 Python 55 years 1 Answer 782 views Master
Finding element from tuple Question YashikaKhurana How will you find the third through sixth elements from the tuple below (using a single line of code) ? my_tuple=(10, 20, 30, 40, 50, 60, 80, 100) in progress 0 Python 55 years 3 Answers 820 views Master
How to create a tuple with a single element? Question YashikaKhurana Give an example to demonstrate how a tuple can contain a single element. in progress 1 Python 55 years 2 Answers 851 views Master
you have uploaded the dataset in csv format on google spread sheet and spread it publicly .you want to access in python how you can do Question anilkrishna1000 you have uploaded the dataset in csv format on google spread sheet and spread it publicly .you want to access in python how you can do this .. in progress 0 Python 55 years 1 Answer 1058 views Member
How to convert string into data time value Question anilkrishna1000 write a code to convert string into date time value in progress 0 Python 55 years 1 Answer 791 views Member
Assume the name and columns of table. There given information about different car names and details of particular car like body_style, average_milage, price etc. Count total cars per company. Question Divyata Suratwala df['company'].value_counts() 0 Python 55 years 0 Answers 990 views Member