small typo

This commit is contained in:
MSilva95 2022-07-22 15:01:24 +01:00 committed by zainab Dnaya
parent 54585ff591
commit 4ff540dcdd
1 changed files with 3 additions and 4 deletions

View File

@ -1,11 +1,11 @@
## StrisNegative
Write a function named `StrisNegative()`hat defines whether a number is negative or positive.
Write a function called `StrisNegative()` that defines whether a number is negative or positive.
- Your function prints `P` if the number is positive
- Your function prints `F` if the number is negative
- If the number is zero, print `0`.
- If it's not a number, print `('\n') `.
- Your program should always print `('\n') ` at the end of the output.
- If it's not a number, print `('\n')`.
- Your program should always print `('\n')` at the end of the output.
### Expected function
@ -41,4 +41,3 @@ N
!
!
```