4 + 3 * 2n-2
------------
10
if x % 2 == 1:
if x**3 != 27:
x = x + 4
else:
x = x / 1.5
else:
if x <= 10:
x = x * 2
else:
x = x - 2
print(x)
What does this code print if x == 8?
a_month = int( input('Enter the month: ') )
a_day = int( input('Enter the day : ') )
b_month = int( input('Enter the month: ') )
b_day = int( input('Enter the day : ') )
# fill in the blank
x = input('Enter a string: ')
y = 0
for i in x:
print(y, i)
y += 1
What does this code print if the user enters 'Felix'?
x = input('Enter a string: ')
y = 0
for i in x:
if i == 'a':
y += 1
print(y)
Write a while loop that does exactly the same thing as the for loop.
Enter the source : eugene
Enter char to replace: e
Enter char to insert : *
Result: *ug*n*
Write Python code that prints out the characters in string str, only with character old_ch replaced with character new_ch.
str = input('Enter the source : ')
old_ch = input('Enter char to replace: ')
new_ch = input('Enter char to insert : ')
# fill in the blank
print('\nResult:', result)