Shortcut Navigation:

Print Def F Quiz

What is value of a = ?a = [1,2,3]>(2,3)

What is value of a = ?a = {1,2,3}<{2,3,4,5}

What is value of a = ?a = {1:2,2:3,3:4}<{2:5,3:6,4:7,5:8}

what is value of a = ?a = {1:'a',2:'b'}=={2:'b',1:'a'}

What is value of a = ?a = ( 'bay' and 'cat' )

Will "f()" be printed?def f():
 print("f()")
 yield 1

f()

What will be printed?def f(value):
 while True:
  value = (yield value)

a=f(10)
print(next(a))
print(next(a))
print(a.send(20))

How to get access to __b__ in outside of class aclass a:
 __b__="hello"

How to get access to __b_ in outside of class aclass a:
 __b_="hello"

a = ?a = [[1] * 2] * 2
a[0][0]=2