Python syntax
functions
Loops
Strings & Output
Random
100

is when you type in a set of words and want to project it out

what is print statement

100

is the use of function in python

what is Functions are reusable pieces of programs

100

True = False
while True:
    print(True)
    break

what is syntax error

100

 a __ is a sequence of values that can't be changed after it is defined.

what is tuple

100

is inheritance used for

To give a class the methods and variables of an interface

200

 In Python, to access the type of a variable, you can ____.

what is type function.

200

keyword is use for function

what is def

200

x = ['ab', 'cd']
for i in x:
    i.upper()
print(x)

[‘ab’, ‘cd’]

200

st='Python Programming'
    x=st.lower()
    y=x.replace('python','Python')
    print y

what is python programming

200

is ___ always in order.

what is a diction

300

The ____ function can be used to read a value from keyword. However, by using this statement you need to supply the value in single quotes.

what is Input

300

is a features of DocString

what is modules, functions, classes, and methods

300

i = 1
while True:
    if i%0O7 == 0:
        break
    print(i)
    i += 1

what is 1 2 3 4 5 6

300

st=['P','y','t','h','o','n']
  w=''.join(st)
  print w

 what is python

300

makes a new User object

what is 

x = User()

400

A comment in Python language can start with _ symbol

what is a #

400
  1. def sayHello():

  2.     print('Hello World!') 

  3. sayHello() 

  4. sayHello()

what is 

Hello World!
Hello World!

400

i = 5
while True:
    if i%0O11 == 0:
        break
    print(i)
    i += 1

what is 5 6 7 8

400

 txt='Python is powerful and easy.'
  words=txt.split(' ')
  l=len(worlds)
  print 'Number of words of the text:%d' %l

what is the number of text is 5

400

An object can contain

what is 

Variables and methods

500

by using the ___ function the value input from keyboard can be read without the use of single quotes.

what is raw_input

500
  1. def say(message, times = 1):

  2.     print(message * times)

  3. say('Hello')

  4. say('World', 5)

what is 

Hello
WorldWorldWorldWorldWorld

500

i = 1
while True:
    if i%3 == 0:
        break
    print(i)
 
    i + = 1

what is an error

500

treats a string as special kind of tuple.

what is python

500

find your Python version

what is python --version

M
e
n
u