23/06/2024
𝐀𝐟𝐠𝐡𝐚𝐧𝐢𝐬𝐭𝐚𝐧 𝐬𝐜𝐫𝐢𝐩𝐭𝐞𝐝 𝐚 𝐡𝐢𝐬𝐭𝐨𝐫𝐢𝐜 𝐰𝐢𝐧 𝐚𝐠𝐚𝐢𝐧𝐬𝐭 𝐀𝐮𝐬𝐭𝐫𝐚𝐥𝐢𝐚 𝐢𝐧 𝐭𝐡𝐞 𝐒𝐮𝐩𝐞𝐫 𝐄𝐢𝐠𝐡𝐭 𝐬𝐭𝐚𝐠𝐞 𝐨𝐟 𝐓𝟐𝟎 𝐖𝐨𝐫𝐥𝐝 𝐂𝐮𝐩 𝟐𝟎𝟐𝟒.
ꗲ𝕙ⅇ𝕔Ԟ ╬𝕙ⅇ 𖤧𝕖𝕤𝕦ǁ𝕥 𝕨ⅈ𝕥ꖲ ⋒𝕟ⅆ ⩕𝕒╬𝕔ꖲ 𝕤𝕦⩕𝕞⋒𝕣ℽ ꖿ𝕚╬𝕙 ℙℽ𝕥ꖲ𝕠ℼ ⋐𝕠ⅆ𝕖
match_details = {
"date": "2024-06-23",
"venue": "Arnos Vale Ground, St Vincent",
"teams": {
"Afghanistan": {
"score": 148,
"wickets": 6,
"overs": 20,
"top_scorers": [
{"name": "Rahmanullah Gurbaz", "runs": 60, "balls": 49},
{"name": "Ibrahim Zadran", "runs": 51, "balls": 48}
],
"best_bowler": {
"name": "Gulbadin Naib",
"wickets": 4,
"runs_conceded": 20,
"overs": 4.0
}
},
"Australia": {
"score": 127,
"wickets": 10,
"overs": 19.2,
"top_scorer": {
"name": "Glenn Maxwell",
"runs": 59,
"balls": 41
}
}
},
"result": {
"winner": "Afghanistan",
"margin": "21 runs"
}
}
print(f"On {match_details['date']}, Afghanistan secured a historic victory over Australia at {match_details['venue']}.")
print(f"Afghanistan scored {match_details['teams']['Afghanistan']['score']}/{match_details['teams']['Afghanistan']['wickets']} in their 20 overs.")
print(f"Australia managed {match_details['teams']['Australia']['score']}/{match_details['teams']['Australia']['wickets']} in {match_details['teams']['Australia']['overs']} overs.")
print(f"Afghanistan won the match by {match_details['result']['margin']}.")
print("\nPlayer of the Match:")
print(f"{match_details['teams']['Afghanistan']['best_bowler']['name']} scored 0 runs in 1 ball and took {match_details['teams']['Afghanistan']['best_bowler']['wickets']} wickets, conceding {match_details['teams']['Afghanistan']['best_bowler']['runs_conceded']} runs in {match_details['teams']['Afghanistan']['best_bowler']['overs']} overs.")
print("\nNotable Performances:")
print(f"For Afghanistan, {match_details['teams']['Afghanistan']['top_scorers'][0]['name']} scored {match_details['teams']['Afghanistan']['top_scorers'][0]['runs']} runs in {match_details['teams']['Afghanistan']['top_scorers'][0]['balls']} balls, and {match_details['teams']['Afghanistan']['top_scorers'][1]['name']} contributed {match_details['teams']['Afghanistan']['top_scorers'][1]['runs']} runs in {match_details['teams']['Afghanistan']['top_scorers'][1]['balls']} balls.")
print(f"For Australia, {match_details['teams']['Australia']['top_scorer']['name']} played a valiant innings, scoring {match_details['teams']['Australia']['top_scorer']['runs']} runs off {match_details['teams']['Australia']['top_scorer']['balls']} balls.")
Function Declaration and Definition in C ProgrammingIn C programming, functions are fundamental building blocks that allow us to encapsulate a specific task ...