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 545eca6 commit 0df2680Copy full SHA for 0df2680
Strings/In operator/in_operator.py
@@ -1,5 +1,5 @@
1
ice_cream = "ice cream"
2
print("cream" in ice_cream) # Print boolean result directly
3
4
-contains = 'ice' in ice_cream
+contains = "ice" in ice_cream
5
print(contains)
Strings/In operator/task-info.yaml
@@ -10,4 +10,4 @@ files:
10
visible: false
11
- name: tests/test_task.py
12
13
-feedback_link: https://docs.google.com/forms/d/e/1FAIpQLSfRlDlldKfuq-cHMNFfHMER61P1PRIan7KG6yp1GvaweDI7GA/viewform?usp=pp_url&entry.2103429047=Strings+/+In+Operator
+feedback_link: https://docs.google.com/forms/d/e/1FAIpQLSfRlDlldKfuq-cHMNFfHMER61P1PRIan7KG6yp1GvaweDI7GA/viewform?usp=pp_url&entry.2103429047=Strings+/+In+Operator
0 commit comments