forked from MIT-Emerging-Talent/ET6-practice-code-review
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' of github.com:MIT-Emerging-Talent/ET6-foundations…
…-group-22
- Loading branch information
Showing
1 changed file
with
40 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
# !/usr/bin/env python3 | ||
# -*- coding: utf-8 -*- | ||
|
||
""" | ||
A module that converts all letters to uppercase | ||
Created on 31 12 2024 | ||
@author: Kareiman Altayeb | ||
""" | ||
|
||
|
||
def convert_to_uppercase(user_text: str) -> str: | ||
"""Asks the user to enter a text and returns the text in capital | ||
with all characters in uppercase | ||
Parameters: | ||
user_text (str): The user input text to be converted to uppercase. | ||
Returns: | ||
str : user_text in upper case | ||
Raises: | ||
AssertionError: If the input is empty or contains only spaces. | ||
Examples: | ||
>>> convert_to_uppercase('hello') | ||
'HELLO' | ||
>>> convert_to_uppercase('HelLo') | ||
'HELLO' | ||
>>> convert_to_uppercase('123hello') | ||
'123HELLO' | ||
""" | ||
|
||
user_text = user_text.strip() | ||
|
||
if not user_text: | ||
raise AssertionError("Entry cannot be empty or just spaces") | ||
|
||
return user_text.upper() |