-
Python Challenges: Convert string to camel case
- 205 Views
- 1 Likes
- 0 Comments
Simple. We're given a string and we must convert it to camel case.
-
Python Challenges: Phone number problem
- 102 Views
- 0 Likes
- 0 Comments
We are given a list with 10 numbers in it, our job is to be given those ten numbers and turn them into a phone number in the following format: (123) 45...
-
Python challenges: String type counter
- 80 Views
- 0 Likes
- 0 Comments
We're given a string and we have to return the amount of uppercase letters, lowercase letters, special characters, and integers in a list
-
Python Challenges: Name Shuffler
- 101 Views
- 0 Likes
- 0 Comments
We are given a string with a first and last name, our job is to return a string with the last name first and the first name last. Hope I explained that...
-
Python Challenges: To square root or not to square root
- 119 Views
- 0 Likes
- 0 Comments
We are given a list and we have to return that list but with the square-rootable number's square root and the non square-rootable numbers squared, I ho...
-
Python Challenges: Short Long Short String
- 187 Views
- 0 Likes
- 0 Comments
We are given two strings, we are going to return a string of those two string mashed together by putting the shorter string first, then the long string...
-
Python Challenges: Are your grades really *that* good?
- 90 Views
- 1 Likes
- 0 Comments
You got a test, did it, passed it, but did you do better than average of all your classmates scores?
-
Python Challenges: Same case or no?
- 42 Views
- 0 Likes
- 0 Comments
Pretty basic and simple, we're given two strings and we have to check if one, the string contains a letter or a special character (or number), and two,...
-
Python Challenges: List with reversed number
- 137 Views
- 0 Likes
- 0 Comments
Simple, we are given a number and we have to return a list with the reversed number
-
Python Challenges: Sum of Negatives and Count of Positives
- 150 Views
- 0 Likes
- 0 Comments
In this CodeCast we're going to be given a list of numbers and we have to return the sum of the negatives and the count of positives, pretty self expla...