Python - Jaden Casing Strings | Codewars 7KYU

  Рет қаралды 881

Wrt Tech

Wrt Tech

Күн бұрын

Пікірлер: 8
@supercrusher1235
@supercrusher1235 2 жыл бұрын
Thanks for the explanation, It helped a lot!
@marzhandzh289
@marzhandzh289 2 жыл бұрын
thank you
@Sugurous
@Sugurous 2 жыл бұрын
Thank you for the video.
@АндрейНИКАНОВ-у1м
@АндрейНИКАНОВ-у1м 2 жыл бұрын
Hi! Why it not work?! =( str = 'abc def ghi' return str.title()
@wrttech422
@wrttech422 2 жыл бұрын
str is a keyword, and you cant use it as the name of a variable. Instead, write it like below (or something similar) strr = 'abc def ghi' return strr.title() im assuming there is more to this code as well? Since you are using a return statement, it must exist within a function.
@АндрейНИКАНОВ-у1м
@АндрейНИКАНОВ-у1м 2 жыл бұрын
@@wrttech422 Task: Create a function called shortcut to remove the lowercase vowels (a, e, i, o, u ) in a given string (8kyu). I have 12 passed and 3 fails. "hello" --> "hll" "codewars" --> "cdwrs" "goodbye" --> "gdby" "HELLO" --> "HELLO" def shortcut( s ): s2 = 'a,e,i,o,u' s3 = "" for x in s: if x not in s2 or x.isupper(): s3 += x return s3
@wrttech422
@wrttech422 2 жыл бұрын
The code below works. The problem you had was with the string s2 = "a,e,i,o,u". Reason being is bc you're using that string to remove the lowercase vowels from string s; however, string s2 contains 4 commas which will also be removed from string s. Unlike lists, strings do not require commas as separators. Copy and paste the code below def shortcut( s ): s2 = 'aeiou' s3 = "" for x in s: if x not in s2: s3 += x return s3
@wrttech422
@wrttech422 2 жыл бұрын
You could also do it in one line of code like below: def shortcut( s ): return ''.join([i for i in s if i not in 'aeiou'])
Python - Cat Years, Dog Years | Codewars 8KYU
4:25
Wrt Tech
Рет қаралды 814
Python - Your Order Please | Codewars 6KYU
5:08
Wrt Tech
Рет қаралды 946
Counter-Strike 2 - Новый кс. Cтарый я
13:10
Marmok
Рет қаралды 2,8 МЛН
Vampire SUCKS Human Energy 🧛🏻‍♂️🪫 (ft. @StevenHe )
0:34
Alan Chikin Chow
Рет қаралды 138 МЛН
Python laid waste to my C++!
17:18
Sheafification of G
Рет қаралды 221 М.
ASMR Programming - Spinning Cube - No Talking
20:45
Servet Gulnaroglu
Рет қаралды 4,4 МЛН
Ranking Java Features Added from Versions 8 to 21!
27:03
Tales from the jar side
Рет қаралды 18 М.
I am not sorry for switching to C
11:34
Sheafification of G
Рет қаралды 177 М.
Who is Smarter? Engineer vs Chinese 5th Grader
21:08
Cantomando
Рет қаралды 1 МЛН
How to STUDY so FAST it feels like CHEATING
8:03
The Angry Explainer
Рет қаралды 2,8 МЛН
How I Would Learn Python FAST (if I could start over)
12:19
I coded one project EVERY WEEK for a YEAR
13:13
Carter Semrad
Рет қаралды 802 М.
Counter-Strike 2 - Новый кс. Cтарый я
13:10
Marmok
Рет қаралды 2,8 МЛН