ðĨ
Daily Quiz Challenge
May 29, 2026
Python Basics Quiz
One quiz per day. Build your streak. Beat the leaderboard.
Next challenge in
--:--:--
hours
Today's Challenge
Q
1
/5
120s
Login
to save your streak and appear on the leaderboard!
What is the output of print(type([]))?
<class 'list'>
<class 'tuple'>
<class 'dict'>
<class 'set'>
[] is a list so type([]) returns <class 'list'>
Which keyword defines a function in Python?
function
def
func
define
The def keyword is used to define functions.
What does len('hello') return?
4
5
6
7
hello has 5 characters so len returns 5.
Python is a compiled language.
True
False
Python is interpreted not compiled.
Which creates a dictionary in Python?
[]
()
{}
<>
Curly braces with key:value pairs create a dict.
Prev
Next
Submit
Today's Leaderboard
Be the first to complete today's challenge!
ðĨ
Streak Leaderboard
No streaks yet â start yours!
Recent Challenges
Python Basics Quiz
May 28
Python Basics Quiz
May 27
Python Basics Quiz
May 26
Python Basics Quiz
May 25
Python Basics Quiz
May 24
Python Basics Quiz
Apr 08
Python Basics Quiz
Apr 07
Home
Quiz
Jobs
Blog
Login