is value there bool/true or false explained

This commit is contained in:
Mert Gör 🇹🇷 2024-01-16 02:37:54 +03:00
parent 879e9bf159
commit 5f99c61ddf
Signed by: hwpplayer1
GPG Key ID: 03E547D043AB6C8F

View File

@ -16,6 +16,7 @@ func Demo1() {
fmt.Println("String number : ", len(my_dictionary)) fmt.Println("String number : ", len(my_dictionary))
fmt.Println("Dictionary", my_dictionary) fmt.Println("Dictionary", my_dictionary)
value := my_dictionary["table"] value, is_value_there := my_dictionary["table"]
fmt.Println(value) fmt.Println(value)
fmt.Println("Listede olma durumu", is_value_there)
} }