Python:
Write an inline if statement to assign x the value 1 if the variable y = 'female' and assign x the value 0 if the variable y = 'male'. The variable y has only two possible values, 'male' and 'female'.
Program Screenshot:

Sample Output:

Code to Copy:
# Kindly indent the code as given in above screenshot.
# Kindly use python 3.5 or 3.6
# Declare a variable.
y="female"
# Declare the inline if.
x=1 if y=='female' else 0
# display the result.
print(x)
Python: Write an inline if statement to assign x the value 1 if the variable y...
USE Python 1. Assign value 555 to the variable x, write code to square the variable x and print out the result. 2. Given a string x, write a program to check if its first character is the same as its last character. If yes, the code should output "True" . 3. We defined two variables, x = 'Python' and y = '3.0'. Write code to concatenate the two numbers (the result should be 'Python3.0').
Write a Python program to prompt the user for an integer number. Assign this integer to a variable X. Then assign a variable Y to the X**3 (X to the power 3). Finally, assign the variable Z to the square root of Y and print the values of X, Y, and Z as shown in the example below. Use main() function to define and call the program. Example: Enter an integer number: 3 X = 3 if Y=X**3 then Y...
Python code: 1. This question practices the use of a list method. Assign to the variable grades a list of 10 letter grades from among ‘A’, ‘B’, ‘C’, ‘D’, and ‘F’. For example: grades = [‘A’, ‘F’, ‘C’, ‘F’, ‘A’, ‘B’, ‘A’, ‘C’, ‘A’, ‘B’] Write a Python expression that creates a list named frequency, in which the elements are the number of times each of the letters A, B, C, D and F appear in grades. For example, for...
Write Python statements corresponding to the following: (a) assign to variable numYes the number of occurrences of 'Y' in list answers. (b) assign to variable numNo the number of occurrences of 'N' in list answers. (c) assign to variable percentYest the percentage of strings in answers that are 'Y'. (d) sort the list answers. (e) Assign to variable f the index of the first occurrence of 'Y' in sorted list answers.
(Python) assume the variable dct references a dictionary. Write an if statement that determines whether the key 'Jon' exists in the dictionary. If so, assign the value 'Jon' to a key of 'John', and then delete 'Jon' and its associated value.
Python: 11. Write a python statement to open a file named nums.txt for writing and assign myfile as a reference to it.
PYTHON 19. Write one python statement to print the square root of a variable x. Control of decimals not required.
Write a MATLAB program to accomplish the following: Create a variable x by assigning it the value 5. Then, subtract 8 from the square of x and assign the result to a second variable y. Next, create a vector z containing as values all the positive prime integers greater than or equal to 2 and less than 20. Multiply z by two and subtract y, and assign the result to w. ONLY display the value for w in the Command...
Write a single C statement to accomplish each of the following tasks: Assign the sum of x and y to z and decrement the value of y by 1 after the calculation. Multiply num by 3 using the *= operator. Increment variable x by 1, then subtract it from variable value. Add variable x to variable total, then increment x by 1.
Write a Python if statement that calls doWhat() if a and b is true or a and not c is true or e is equal to q. Write an example of a Python for loop that uses a range. Write an example of a Python for loop that iterates on the members of a container such as a list. Show by code example in Python how to concatenate two strings and assign the result to a variable.