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 d1d5f83 commit 28d33e9Copy full SHA for 28d33e9
dict.py
@@ -19,3 +19,17 @@
19
print("my_dict: ", my_dict)
20
21
print("Program finished!")
22
+
23
24
+def main():
25
+ print("Hello World!")
26
+ r_key = "123"
27
+ metric_name = "great_metric"
28
+ validation_result_dict = {r_key: ("good", "")}
29
+ update_dict = {r_key: ["bad", "bad_{}".format(metric_name)]}
30
+ validation_result_dict.update(update_dict)
31
+ print("validation_result_dict is: {}".format(validation_result_dict))
32
33
34
+if __name__ == "__main__":
35
+ main()
0 commit comments