Question: Write a python program using lists do not use def or other buildt int commands Write a program that repeatedly reads in a word from
Write a python program using lists do not use def or other buildt int commands

Write a program that repeatedly reads in a word from a user (INPUT) and converts it to Pig Latin(SLICING). The program should continue reading words until the user enters "stop" (LOOP) Challenge: Try to write a program where, instead of just one word, the user enters an entire sentence, and all words in the sentence are converted to Pig Latin. Program 2: (Vector Math) This program is meant to give you practice with lists and looping on them, as well as practice with vector computations. Write a program that lets a user enter two vectors (INPUT), A and B, of arbitrary dimension. You should allow the user to FIRST enter the dimension of the vector, THEN get the elements of the two vectors from the user. Then, you should output (in a clearly labeled way), the results of these computations: The magnitude of vector A and the magnitude of vector B . AB And the dot product (inner product) of A and B Note: You should use lists when solving this problem. Later we will see some other ways to work with vectors more directly
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
