Quick Quiz!

We'll cover the following...
Technical Quiz
1.

Which of the following snippets will work for Python versions less than 3.6?

A.
int('١٢٣٤٥٦٧٨٩')
B.
six_million = 6_000_000
C.
some_string = "ftwpython"
print(f'{some_string=}')
D.
if a:=None:
  print(a)

1 / 5