Python Exercise - 3
Sign in to Google to save your progress. Learn more
Email *
What is your name? *
Phone No *
Freegurukul ID *
for x in "VESRN":
  print(x)

*
y = int(2.8) will be
*
x=1
print(type(x)) 

what is the output?
*
a = 100
b = 200
if not(b == a):
  print("b is greater than a")

what is the result?
*
i = 1
while i <= 10:
  print(i)
  i += 1

what is the output ?
*
i = 1
while i < 10:
  if i==3 or i==5:
   
    print(i)
  i += 1

Output?
*
x = range(6)
print(type(x))


Output? 
*
x = 2
y = 5

print(x ** y)
*
x = ["apple", "banana"]

print("pineapple" not in x)


output?
*
print(3 << 2)
*
Give me a feedback about my teaching? *
Submit
Clear form
Never submit passwords through Google Forms.
This content is neither created nor endorsed by Google.