USE IDLE PLATFORM FOR PYTHON PLEASE
Write a Python program that creates a list that contains players of your favorite teams. The program then should ask the user to enter the name of a player. If the player is in your list, display a message indicating that the player is in the team. Otherwise, the program should display a message stating that the player isn't on the team.
data=["Virat","Rohit","Sachin","Sehwag","Gauti"]
name=input("Enter player name: ")
if name in data:
print(name," is in the team")
else:
print(name," isn't on the team")

Note : Please comment below if you have concerns. I am here to help you
If you like my answer please rate and help me it is very Imp for me
USE IDLE PLATFORM FOR PYTHON PLEASE Write a Python program that creates a list that contains...
IN PYTHON USING IDLE PLATFORM PLEASE ALSO POST CODE TO COPY PLEASE Write a PYTHON Program that will ask the user for a base number then the program should display the multiplication table of that number up to 12.
PLEASE USE IDLE PLATFORM FOR PYTHON OTHERWISE IT WONT BE COMPATIBLE THANKS Write a python program that takes as input a string then displays the string in the reverse order: Write two versions of this Program: Version 1 slicing and Version 2 using loops
Write python program using IDLE Write a full program that asks the user to enter his/her name then repeatedly ask to enter the temperature in Fahrenheit and convert it to Celsius, the program should then prompt the user if he/she wants to continue or exit the program. The formula for the conversion is: °C = (°F - 32) x 5/9 The program should use a function for the conversion. An Example of a sample run should appear on the screen...
write a program that asks the user to enter two integers one at a time if the first value is not an integer then do not ask for a second then display both values otherwise print error message stating which value entered was not an integer python
((python programming))
2. In this exercise you will create a program that reads a letter of the alphabet from the user. If the user enters a, e, i, o or u then your program should display a message indicating that the entered letter is a vowel. If the user enters y then your program should display a message indicating that sometimes y is a vowel and sometimes y is a consonant. Otherwise your program should display a message indicating that...
Write them in python IDLE *****
5. Average Rainfall
Write a program that uses nested loops to collect data
and calculate the average rainfall over a period of years. The
program should first ask for the number of years. The outer loop
will iterate once for each year. The inner loop will iterate twelve
times, once for each month. Each iteration of the inner loop will
ask the user for the inches of rainfall for that month. After all
iterations,...
write in python idle Write full program that asks the user to enter his/her name then repeatedly ask to enter the temperature in Fahrenheit and convert it to Celsius, the program should then prompt the user if he/she wants to continue or exit the program. The formula for conversion is: °C = (°F - 32) x 5/9 The program should use a function for the conversion. An Example of a sample run should appear on the screen like the text...
QUESTION 11 Python Write a python program determine the winning team in a football game. There are 4 quarters in a game (assuming no overtime). You can use Team A and Team B for the teams. Ask the user to enter the number of points scored in each quarter by each team. At the end, determine which team won. You should use a for or while loop for this program.
In PYTHON Write a program that # 1) Creates a list of 25 numbers that are all different # 2) Takes a user-input number and then determines which number in the list is closest to the user-input number.
(Python Programming)Write a Python program that prompts the user to enter a list of words and stores in a list only those words whose first letter occurs again within the word (for example, 'Baboon'). The program should display the resulting list.