11.
What will be the output of the following Python code?
import turtle
t=turtle.Pen()
for i in range(0,4):
	t.forward(100)
	t.left(90)
 
t.penup()
t.left(90)
t.forward(200)
for i in range(0,4):
	t.forward(100)
	t.left(90)

13.
The output of the following Python code will result in a shape similar to the alphabet . . . . . . . .
import turtle
t=turtle.Turtle()
t1=turtle.Turtle()
t.left(45)
t1.left(135)
t.forward(100)
t1.forward(100)

14.
What will be the output of the following Python code if the system date is 18th June, 2017 (Sunday)?
import datetime
tday=datetime.date.today()
print(tday)

15.
What will be the output of the following Python code?
import time
for i in range(0,5):
	print(i)
	time.sleep(2)

17.
What will be the output of the following Python code?
import time
t=(2010, 9, 20, 8, 15, 12, 6)
time.asctime(t)

19.
How can you create a Python package?

Read More Section(Module in Python)

Each Section contains maximum 100 MCQs question on Module in Python. To get more questions visit other sections.