Question: Hey everyone i need to convert this python code to Scratch Program / Sb2 or Sb3 Please someone can help me with it # python
Hey everyone
i need to convert this python code to Scratch Program / Sb2 or Sb3
Please someone can help me with it
# python script
def removeSecondHalfAlphabet(str): newStr = "" for i in str: if (i >= 'A' and i < 'N') or (i >= 'a' and i < 'n'): newStr += i print(newStr) str = input("Enter a word: ")
removeSecondHalfAlphabet(str)
Pleaseee this is for my project.
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
