Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 0df2680

Browse files
committedMay 3, 2023
closes #185
1 parent 545eca6 commit 0df2680

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed
 

‎Strings/In operator/in_operator.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
ice_cream = "ice cream"
22
print("cream" in ice_cream) # Print boolean result directly
33

4-
contains = 'ice' in ice_cream
4+
contains = "ice" in ice_cream
55
print(contains)

‎Strings/In operator/task-info.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,4 +10,4 @@ files:
1010
visible: false
1111
- name: tests/test_task.py
1212
visible: false
13-
feedback_link: https://docs.google.com/forms/d/e/1FAIpQLSfRlDlldKfuq-cHMNFfHMER61P1PRIan7KG6yp1GvaweDI7GA/viewform?usp=pp_url&entry.2103429047=Strings+/+In+Operator
13+
feedback_link: https://docs.google.com/forms/d/e/1FAIpQLSfRlDlldKfuq-cHMNFfHMER61P1PRIan7KG6yp1GvaweDI7GA/viewform?usp=pp_url&entry.2103429047=Strings+/+In+Operator

0 commit comments

Comments
 (0)
Please sign in to comment.