Skip to content
#

python-strings

Here are 34 public repositories matching this topic...

Data types specify the different sizes and values that can be stored in the variable. For example, Python stores numbers, strings, and a list of values using different data types. Learn different types of Python data types along with their respective in-built functions and methods.

  • Updated Dec 9, 2022
  • Jupyter Notebook

substring_between_letters() takes a string named _word_, a single character named _start_, and another character named _end_. This function should return the substring between the first occurrence of _start_ and _end_ in word. If _start_ or _end_ are not in _word_, the function should return _word_. For example, substring_between_letters("apple"…

  • Updated Jan 27, 2021
  • Python

check_for_name() takes two strings as parameters named _sentence_ and _name_. The function should return _True_ if _name_ appears in sentence in all lowercase letters, all uppercase letters, or with any mix of uppercase and lowercase letters. The function should return _False_ otherwise.

  • Updated Jan 27, 2021
  • Python

Improve this page

Add a description, image, and links to the python-strings topic page so that developers can more easily learn about it.

Curate this topic

Add this topic to your repo

To associate your repository with the python-strings topic, visit your repo's landing page and select "manage topics."

Learn more