File tree Expand file tree Collapse file tree 1 file changed +6
-4
lines changed
Expand file tree Collapse file tree 1 file changed +6
-4
lines changed Original file line number Diff line number Diff line change 7373True
7474>> > str_anagram(' beat' , ' table' )
7575False
76+ >> > str_anagram(' Tap' , ' paT' )
77+ True
7678>> > str_anagram(' beat' , ' abet' )
7779True
7880```
@@ -121,11 +123,11 @@ ValueError: could not convert string to int or float
121123
122124** Q3a)** Write a function that returns
123125
124- * 'Good' for numbers divisable by 7
125- * 'Food' for numbers divisable by 6
126- * 'Universe' for numbers divisable by 42
126+ * 'Good' for numbers divisible by 7
127+ * 'Food' for numbers divisible by 6
128+ * 'Universe' for numbers divisible by 42
127129* 'Oops' for all other numbers
128- * Only one output, divisable by 42 takes precedence
130+ * Only one output, divisible by 42 takes precedence
129131
130132``` python
131133>> > six_by_seven(66 )
You can’t perform that action at this time.
0 commit comments