Python syntax
functions
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

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

what is tuple

100

range(5)

what is [0,1,2,3,4]

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

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

what is python programming

200
number of directions turtle can move to

what is 4

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

Good luck for the dayyyyyyyy!!!!!!

Free points~

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

def sayHello():

     print('Hello World!') 

sayHello() 

sayHello()

what is 

Hello World!
Hello World!

400

 txt='Python is powerful and easy.'
  words=txt.split(' ')
  l=len(words)
  print 'Number of words of the text:' +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 input

500

def say(message, times = 1):

    print(message * times)

say('Hello')

say('World', 5)

what is 

Hello
WorldWorldWorldWorldWorld

500

are strings mutable or immutable

what is immutable

500

add string to end of data file

what is filevariable.write(astring)

M
e
n
u