ðĨ
Daily Quiz Challenge
Apr 18, 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
Apr 17
Python Basics Quiz
Apr 16
Python Basics Quiz
Apr 15
Python Basics Quiz
Apr 14
Python Basics Quiz
Apr 13
Python Basics Quiz
Apr 12
Python Basics Quiz
Apr 11
Home
Quiz
Jobs
Blog
Login