Answer:
In Function library you would find the use in Formula function
I believe in this case you would be using Clip Art.
Smart Art is used on words to make graphics usually.
Graphs are not pictures
Shapes are completely different
Answer:
scope of pet name is limited to pet class and color is accessible to the whole program
Explanation:
Answer:
theSentence = input('Enter sentence: ')
theSentence = theSentence.split()
sentence_split_list =[]
for word in theSentence:
sentence_split_list.append(word[1:]+word[0]+'ay')
sentence_split_list = ' '.join(sentence_split_list)
print(sentence_split_list)
Explanation:
Using the input function in python Programming language, the user is prompted to enter a sentence. The sentence is splited and and a new list is created with this statements;
theSentence = theSentence.split()
sentence_split_list =[ ]
In this way every word in the sentence becomes an element in this list and individual operations can be carried out on them
Using the append method and list slicing in the for loop, every word in the sentence is converted to a PIG LATIN
The attached screenshot shows the code and output.
<span>A linear bus topology uses a common background cable to connect all network devices.</span>