Get link Facebook X Pinterest Email Other Apps March 29, 2022 DICTIONARY🕮monthConversion = { "Jan": "January", "Feb": "February", "Mar": "March", "Apr": "April", "May": "May",}print(monthConversion["Feb"]) Get link Facebook X Pinterest Email Other Apps Comments
March 29, 2022 WHILE LOOP➰ i = 1 while i <= 10 : print (i) i += 1 print ( "done with loop" ) Read more
Comments
Post a Comment