We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 90a08ae commit b34afb8Copy full SHA for b34afb8
python_study_2/page7/script.py
@@ -0,0 +1,6 @@
1
+fruits = {'apple': 'manzana', 'orange': 'naranja', 'grape': 'uva'}
2
+
3
+# With a for loop, print '___ is ___ in Spanish'
4
5
+for fruits_key in fruits:
6
+ print(fruits_key + " is " + fruits[fruits_key] + " in Spanish")
0 commit comments