Answer:
Including a input statement
Explanation:
You need a input statement in order for it to work, here´s an example;
script.parent.click <u>then</u>
you need the ¨.mouse¨ after parent or it wouldnt work.
Answer:
mystr = input("Enter a string ")
length = len(mystr)
while length<10:
mystr = input("Enter a string ")
length = len(mystr)
if(length>=10):
break
if len(mystr)%2==0:
print(mystr.lower())
else:
print(mystr.upper())
Explanation:
The variable mystr is used to save user's input which is received with the input function
A second variable length is used to save the length of the input string Using a while statement the user is continually prompted to enter a string while length is less than 10.
If length is greater or equal to 10. We check for even or odd using the modulo (%) operator.
We use lower() and upper() to change the case of the string
<span>The capacity of a communication channel is measured in gb and gps.</span>