Skip to content

Commit

Permalink
fix return
Browse files Browse the repository at this point in the history
  • Loading branch information
andrew0022 committed Nov 6, 2023
1 parent 6e1cd83 commit 8447241
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/riceinfo/rice.py
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ def riceCountry(country_name):
'china': 'China is a major consumer of traditional jasmine rice, though they use many different varieties of short, medium, and long grain rice, depending on the dish.',
'thailand': 'Thailand is famous for its fragrant Jasmine rice, which is a long-grain rice variety known for its unique aroma and flavor.',
'indonesia': 'Indonesia commonly uses Pandan rice, which is jasmine rice cooked in pandan leaves and is used in dishes like Nasi Goreng.',
'japan': 'Japan primarily uses a short grain Koshihikari rice for sushi, sashimi, and traditional Japanese dishes.',
'japan': 'Japan primarily uses a short grain Koshihikari rice for sushi and other traditional Japanese dishes.',
'south korea': 'South Korea mainly uses Calrose rice, a medium grain variety which is used for dishes like Bibimbap and Kimbap.'
}

Expand All @@ -65,7 +65,7 @@ def riceCountry(country_name):
print(option.capitalize())
country_name = input("Please enter a valid country name: ").lower()

print(rice_country[country_name])
return (rice_country[country_name])


def history(century):
Expand Down

0 comments on commit 8447241

Please sign in to comment.