#sir-lancebot-playground
1 messages · Page 201 of 1
@prime mirage got the correct answer :tada: 100 points!
Let's move to the next question.
Remaining questions: 5
CookieTheCat#1756: 100
Which one of these protocols/abstract base classes does the builtin range object NOT implement?
(Sequence, Iterable, Generator)
Generator
@prime mirage got the correct answer :tada: 100 points!
Let's move to the next question.
Remaining questions: 4
CookieTheCat#1756: 200
When was Python first released?
1991
@prime mirage got the correct answer :tada: 100 points!
Let's move to the next question.
Remaining questions: 3
CookieTheCat#1756: 300
What type does the & operator return when given 2 dict_keys objects?
set
@prime mirage got the correct answer :tada: 100 points!
Let's move to the next question.
Remaining questions: 2
CookieTheCat#1756: 400
What file extension is used by the site module to determine what to do at every start?
.pth
@prime mirage got the correct answer :tada: 100 points!
Let's move to the next question.
Remaining questions: 1
CookieTheCat#1756: 500
Does numbers.Rational include the builtin object float (y/n)
n
@prime mirage got the correct answer :tada: 100 points!
Remaining questions: 0
CookieTheCat#1756: 600
The round has ended.
Congratulations @prime mirage :tada: You have won this quiz game with a grand total of 600 points!
.catify
Your catified nickname is: ᓚᘏᗢ | Guilhotina | ᓇᘏᗢ | ᓇᘏᗢ
Your catified nickname is: Guilhotina | ᘡᘏᗢ
.bm 874008100510761031 for further reference :DDDD
.quiz python
This game consists of 7 questions.
**Rules: **
- Only enclose your answer in backticks when the question tells you to.
- If the question specifies an answer format, follow it or else it won't be accepted.
- You have 30s per question. Points for each question reduces by 25 after 10s or after a hint.
- No cheating and have fun!
Category: python
When was Python first released?
20s left!
pass
10s left!
Better luck next time...
Let's move to the next question.
Remaining questions: 6
No one has made it onto the leaderboard yet.
Which of these is a subclass of Exception?
(NotImplemented, asyncio.CancelledError, StopIteration)
20s left!
10s left!
StopIteration
@main scarab got the correct answer :tada: 50 points!
Let's move to the next question.
Remaining questions: 5
Orange#2970: 50
Which protocol is used to pass self to methods when accessed on classes?
20s left!
@classmethod
10s left!
classmethod
No one answered correctly!
Let's move to the next question.
Remaining questions: 4
Orange#2970: 50
Does numbers.Rational include the builtin object float (y/n)
20s left!
10s left!
No one answered correctly!
Let's move to the next question.
Remaining questions: 3
n
Orange#2970: 50
Which file contains all special site builtins, such as help or credits?
20s left!
kwlist
10s left!
keyword
Better luck next time...
Let's move to the next question.
Remaining questions: 2
Orange#2970: 50
What dunder method is used by the tuple constructor to optimize converting an iterator to a tuple (answer should be enclosed in backticks!)?
20s left!
10s left!
Better luck next time...
Let's move to the next question.
Remaining questions: 1
Orange#2970: 50
Can you pickle a running list_iterator (y/n)?
lmao
20s left!
10s left!
No one answered correctly!
Remaining questions: 0
Orange#2970: 50
The round has ended.
Congratulations @main scarab :tada: You have won this quiz game with a grand total of 50 points!
.quiz python
This game consists of 7 questions.
**Rules: **
- Only enclose your answer in backticks when the question tells you to.
- If the question specifies an answer format, follow it or else it won't be accepted.
- You have 30s per question. Points for each question reduces by 25 after 10s or after a hint.
- No cheating and have fun!
Category: python
Can you pickle a running list_iterator (y/n)?
20s left!
10s left!
No one answered correctly!
Let's move to the next question.
Remaining questions: 6
No one has made it onto the leaderboard yet.
Which of these is not a generator method?
(next, send, throw, close)
close
20s left!
@main scarab got the correct answer :tada: 75 points!
Let's move to the next question.
Remaining questions: 5
Orange#2970: 75
What exception, other than StopIteration, can you raise from a __getitem__ dunder to indicate to an iterator that it should stop?
20s left!
10s left!
No one answered correctly!
Let's move to the next question.
Remaining questions: 4
Orange#2970: 75
Which standard library module is designed for making simple parsers for languages like shell, as well as safe quoting of strings for use in a shell?
20s left!
10s left!
No one answered correctly!
Let's move to the next question.
Remaining questions: 3
Orange#2970: 75
What dunder method is used by the tuple constructor to optimize converting an iterator to a tuple (answer should be enclosed in backticks!)?
20s left!
10s left!
No one answered correctly!
Let's move to the next question.
Remaining questions: 2
Orange#2970: 75
What is the official name of this operator :=, introduced in 3.8?
20s left!
10s left!
No one answered correctly!
Let's move to the next question.
Remaining questions: 1
Orange#2970: 75
What is a package that doesn't have a __init__ file called?
20s left!
10s left!
Better luck next time...
Remaining questions: 0
Orange#2970: 75
The round has ended.
Congratulations @main scarab :tada: You have won this quiz game with a grand total of 75 points!
.quiz leaderboard
CookieTheCat#1756: 3775
[IS] X-82#5733: 3200
DanTheMan#9743: 550
francis#8003: 425
dArKhAcKs#7713: 150
Orange#2970: 125
Your input was invalid: command is a required argument that is missing.
Usage:.timed <command>
.timed
Your input was invalid: command is a required argument that is missing.
Usage:.timed <command>
.cheat dictionary
Result Of cht.sh
# Convert two lists into a dictionary in Python
#
# Like this:
>>> keys = ['a', 'b', 'c']
>>> values = [1, 2, 3]
>>> dictionary = dict(zip(keys, values))
>>> print(dictionary)
{'a': 1, 'b': 2, 'c': 3}
# Voila :-) The pairwise dict constructor and zip function are
# awesomely useful: https://docs.python.org/3/library/functions.html
# func-dict
#
# [Dan Lenski] [so/q/209840] [cc by-sa 3.0]
Unknown cheat sheet. Please try to reformulate your query.
Examples:
.cht read json
.cht hello world
.cht lambda
If the problem persists send a message in #dev-contrib
.cht hello world
Result Of cht.sh
# Hello World in Python
print("Hello, World!")
# You are probably using Python 3.0, where Python is now a function
# (hence the parenthesis) instead of a statement.
#
# [Unknown] [so/q/1077347] [cc by-sa 3.0]
.cht read json
Result Of cht.sh
# python - Parsing values from a JSON file?
#
# I think what Ignacio is saying is that your JSON file is incorrect.
# You have [] when you should have {}. [] are for lists, {} are for
# dictionaries.
#
# Here's how your JSON file should look, your JSON file wouldn't even
# load for me:
{
"maps": [
{
"id": "blabla",
"iscategorical": "0"
},
{
"id": "blabla",
"iscategorical": "0"
}
],
"masks": {
"id": "valore"
},
"om_points": "value",
"parameters": {
"id": "valore"
}
}
# Then you can use your code:
import json
from pprint import pprint
with open('data.json') as f:
data = json.load(f)
pprint(data)
# With data, you can now also find values like so:
data["maps"][0]["id"]
data["masks"]["id"]
data["om_points"]
# Try those out and see if it starts to make sense.
#
# [Justin Peel] [so/q/2835559] [cc by-sa 3.0]
import time
a=0
a<10
while True:
a=a+1
print(a)
time.sleep(10
import time
a=0
a<10
while True:
a=a+1
print(a)
time.sleep(10)
.quiz
This game consists of 7 questions.
**Rules: **
- Only enclose your answer in backticks when the question tells you to.
- If the question specifies an answer format, follow it or else it won't be accepted.
- You have 30s per question. Points for each question reduces by 25 after 10s or after a hint.
- No cheating and have fun!
Category: science
The type of rock that is formed by the accumulation or deposition of mineral or organic particles at the Earth's surface, followed by cementation, is called...
.quiz <category> <questions>
Can also use: trivia
*Start a quiz!
Questions for the quiz can be selected from the following categories:
- general: Test your general knowledge.
- retro: Questions related to retro gaming.
- math: General questions about mathematics ranging from grade 8 to grade 12.
- science: Put your understanding of science to the test!
- cs: A large variety of computer science questions.
- python: Trivia on our amazing language, Python!
(More to come!)*
Subcommands:
leaderboard
View everyone's score for this bot session.
stop
Stop a quiz game if its running in the channel.
20s left!
.quiz programming
Game is already running... do .quiz stop
Sedimentary
@prime mirage got the correct answer :tada: 75 points!
Let's move to the next question.
Remaining questions: 6
CookieTheCat#1756: 75
.quiz stop
Quiz stopped.
- General
Test your general knowledge.
- Retro
Questions related to retro gaming.
- Math
General questions about mathematics ranging from grade 8 to grade 12.
- Science
Put your understanding of science to the test!
- Cs
A large variety of computer science questions.
- Python
Trivia on our amazing language, python!
.quiz python
This game consists of 7 questions.
**Rules: **
- Only enclose your answer in backticks when the question tells you to.
- If the question specifies an answer format, follow it or else it won't be accepted.
- You have 30s per question. Points for each question reduces by 25 after 10s or after a hint.
- No cheating and have fun!
Category: python
What type does the & operator return when given 2 dict_keys objects?
.quiz python
Game is already running... do .quiz stop
set
@prime mirage got the correct answer :tada: 100 points!
Let's move to the next question.
Remaining questions: 6
CookieTheCat#1756: 100
Is the __aiter__ method async (y/n)?
n
@prime mirage got the correct answer :tada: 100 points!
Let's move to the next question.
Remaining questions: 5
CookieTheCat#1756: 200
When was Python first released?
1991
@prime mirage got the correct answer :tada: 100 points!
Let's move to the next question.
Remaining questions: 4
CookieTheCat#1756: 300
Where does the name Python come from?
Monty python
@prime mirage got the correct answer :tada: 100 points!
Let's move to the next question.
Remaining questions: 3
CookieTheCat#1756: 400
What exception, other than StopIteration, can you raise from a __getitem__ dunder to indicate to an iterator that it should stop?
IndexError
@prime mirage got the correct answer :tada: 100 points!
Let's move to the next question.
Remaining questions: 2
CookieTheCat#1756: 500
What is a package that doesn't have a __init__ file called?
namespace package
@prime mirage got the correct answer :tada: 100 points!
Let's move to the next question.
Remaining questions: 1
CookieTheCat#1756: 600
What decorator is used to allow a protocol to be checked at runtime?
this guys a legend
20s left!
runtime_checkable
@prime mirage got the correct answer :tada: 75 points!
Remaining questions: 0
CookieTheCat#1756: 675
The round has ended.
Congratulations @prime mirage :tada: You have won this quiz game with a grand total of 675 points!
.help
AdventOfCode
.adventofcode
All of the Advent of Code commands.
AprilFoolVideos
.fool
Get a random April Fools' video from Youtube.
AvatarModify
.8bitify
Pixelates your avatar and changes the palette to an 8bit one.
.avatar_modify
Groups all of the pfp modifying commands to allow a single concurrency limit.
.avatareasterify [colours...]
This "Easterifies" the user's avatar.
.mosaic [squares=16]
Splits your avatar into x squares, randomizes them and stitches them back into a new image!
.prideavatar [option=lgbt] [pixels=64]
This surrounds an avatar with a border of a specified LGBT flag.
.spookyavatar
Spookify an user's avatar.
.spookyavatar
.mosaic 25
.mosaic 100
.mosaic 3
Your input was invalid: Squares must be a positive number less than or equal to 10,000.
Usage:.avatar_modify mosaic [squares=16]
.mosaic 9000
.mosaic 9000
.avatar_modify
.avatar_modify
Can also use: avatar_mod, avatarmod, pfp_mod, pfpmod
Groups all of the pfp modifying commands to allow a single concurrency limit.
Subcommands:
8bitify
Pixelates your avatar and changes the palette to an 8bit one.
avatareasterify [colours...]
This "Easterifies" the user's avatar.
mosaic [squares=16]
Splits your avatar into x squares, randomizes them and stitches them back into a new image!
prideavatar [option=lgbt] [pixels=64]
This surrounds an avatar with a border of a specified LGBT flag.
spookyavatar
Spookify an user's avatar.
.8bitify
.help
Battleship
.battleship
Play a game of Battleship with someone else!
BeMyValentine
.bemyvalentine <user> [valentine_type]
Send a valentine to a specified user with the lovefest role.
Bookmark
.bookmark <target_message> [title=Bookmark]
Send the author a link to target_message via DMs.
BotSource
.source [source_item]
Display information and a GitHub link to the source code of a command, tag, or cog.
BunnyNameGenerator
.bunnifyme
Gets your Discord username and bunnifies it.
.space
Head command that contains commands about space.
Subcommands:
apod <date>
Get Astronomy Picture of Day from NASA API. Date is optional parameter, what formatting is YYYY-MM-DD.
epic <date>
Get a random image of the Earth from the NASA EPIC API. Support date parameter, format is YYYY-MM-DD.
mars <date> [rover=curiosity]
Get random Mars image by date. Support both SOL (martian solar day) and earth date and rovers.
nasa <search_term>
Get random NASA information/facts + image. Support search_term parameter for more specific search.
.space nasa mars
.help
AdventOfCode
.adventofcode
All of the Advent of Code commands.
AprilFoolVideos
.fool
Get a random April Fools' video from Youtube.
AvatarModify
.8bitify
Pixelates your avatar and changes the palette to an 8bit one.
.avatar_modify
Groups all of the pfp modifying commands to allow a single concurrency limit.
.avatareasterify [colours...]
This "Easterifies" the user's avatar.
.mosaic [squares=16]
Splits your avatar into x squares, randomizes them and stitches them back into a new image!
.prideavatar [option=lgbt] [pixels=64]
This surrounds an avatar with a border of a specified LGBT flag.
.spookyavatar
Spookify an user's avatar.
.spookyavatar
.mosaic
.mosaic 200
.mosaic 100000
Your input was invalid: Squares must be a positive number less than or equal to 10,000.
Usage:.avatar_modify mosaic [squares=16]
.mosaic 10000
.space apod
What's the best way to watch a meteor shower? This question might come up later this week when the annual Perseid Meteor Shower peaks. One thing that is helpful is a dark sky, as demonstrated in the featured composite image of last year's Perseids. Many more faint meteors are visible on the left image, taken through a very dark sky in Slovakia, than on the right image, taken through a moderately dark sky in the Czech Republic. The band of the Milky Way Galaxy bridges the two coordinated images, while the meteor shower radiant in the constellation of Perseus is clearly visible on the left. In sum, many faint meteors are lost through a bright sky. Light pollution is shrinking areas across our Earth with dark skies, although inexpensive ways to combat this might be implemented. Notable Perseids Submissions to APOD: 2018, 2019, 2020
.space
.space
Head command that contains commands about space.
Subcommands:
apod <date>
Get Astronomy Picture of Day from NASA API. Date is optional parameter, what formatting is YYYY-MM-DD.
epic <date>
Get a random image of the Earth from the NASA EPIC API. Support date parameter, format is YYYY-MM-DD.
mars <date> [rover=curiosity]
Get random Mars image by date. Support both SOL (martian solar day) and earth date and rovers.
nasa <search_term>
Get random NASA information/facts + image. Support search_term parameter for more specific search.
.space epic
.bm 874304924974989332
.mosaic 3
.mosaic 4
.mosaic 2
.mosaic 10000
.mosaic 10000
Your input was invalid: Squares must be a positive number less than or equal to 10,000.
Usage:.avatar_modify mosaic [squares=16]
.mosaic 10000
.mosaic 1000
.mosaic 100
.mosaic 2
.mosaic 1
.help
AdventOfCode
.adventofcode
All of the Advent of Code commands.
AprilFoolVideos
.fool
Get a random April Fools' video from Youtube.
AvatarModify
.8bitify
Pixelates your avatar and changes the palette to an 8bit one.
.avatar_modify
Groups all of the pfp modifying commands to allow a single concurrency limit.
.avatareasterify [colours...]
This "Easterifies" the user's avatar.
.mosaic [squares=16]
Splits your avatar into x squares, randomizes them and stitches them back into a new image!
.prideavatar [option=lgbt] [pixels=64]
This surrounds an avatar with a border of a specified LGBT flag.
.spookyavatar
Spookify an user's avatar.
.help space
.space
Head command that contains commands about space.
Subcommands:
apod <date>
Get Astronomy Picture of Day from NASA API. Date is optional parameter, what formatting is YYYY-MM-DD.
epic <date>
Get a random image of the Earth from the NASA EPIC API. Support date parameter, format is YYYY-MM-DD.
mars <date> [rover=curiosity]
Get random Mars image by date. Support both SOL (martian solar day) and earth date and rovers.
nasa <search_term>
Get random NASA information/facts + image. Support search_term parameter for more specific search.
.space 12/3/2021 rover=curiosity
.space
Head command that contains commands about space.
Subcommands:
apod <date>
Get Astronomy Picture of Day from NASA API. Date is optional parameter, what formatting is YYYY-MM-DD.
epic <date>
Get a random image of the Earth from the NASA EPIC API. Support date parameter, format is YYYY-MM-DD.
mars <date> [rover=curiosity]
Get random Mars image by date. Support both SOL (martian solar day) and earth date and rovers.
nasa <search_term>
Get random NASA information/facts + image. Support search_term parameter for more specific search.
.space epic
.mosaic
.so Configure Pycharm to Python 3.10
Here are the top 1 results:
.mosaic 10000000000000000
Your input was invalid: Squares must be a positive number less than or equal to 10,000.
Usage:.avatar_modify mosaic [squares=16]
.so Python 3.10 interpreter
.so Python 3.10 interpreter
.so Python 3.10 interpreter
Here are the top 5 results:
.mosaic 10000
wow
.quiz leaderboard
No one has made it onto the leaderboard yet.
This game consists of 10 questions.
**Rules: **
- Only enclose your answer in backticks when the question tells you to.
- If the question specifies an answer format, follow it or else it won't be accepted.
- You have 30s per question. Points for each question reduces by 25 after 10s or after a hint.
- No cheating and have fun!
Category: python
Which standard library module is designed for making simple parsers for languages like shell, as well as safe quoting of strings for use in a shell?
shlex
@rugged pike got the correct answer :tada: 100 points!
Let's move to the next question.
Remaining questions: 9
Aboo Minister#8971: 100
Which of these is a subclass of Exception?
(NotImplemented, asyncio.CancelledError, StopIteration)
StopIteration
@rugged pike got the correct answer :tada: 100 points!
Let's move to the next question.
Remaining questions: 8
Aboo Minister#8971: 200
Name the only non-dunder method of the builtin slice object.
indices
@rugged pike got the correct answer :tada: 100 points!
Let's move to the next question.
Remaining questions: 7
Aboo Minister#8971: 300
What is the garbage collection strategy used by cpython to collect everything but reference cycles?
refcounting
@rugged pike got the correct answer :tada: 100 points!
Let's move to the next question.
Remaining questions: 6
Aboo Minister#8971: 400
Which module when imported opens up a web browser tab that points to the classic 353 XKCD comic mentioning Python?
antigravity
@rugged pike got the correct answer :tada: 100 points!
Let's move to the next question.
Remaining questions: 5
Aboo Minister#8971: 500
What type is the attribute of a frame object that contains the current local variables?
dict
@rugged pike got the correct answer :tada: 100 points!
Let's move to the next question.
Remaining questions: 4
Aboo Minister#8971: 600
Does numbers.Rational include the builtin object float (y/n)
n
@rugged pike got the correct answer :tada: 100 points!
Let's move to the next question.
Remaining questions: 3
Aboo Minister#8971: 700
Which of these is not a generator method?
(next, send, throw, close)
next
@rugged pike got the correct answer :tada: 100 points!
Let's move to the next question.
Remaining questions: 2
Aboo Minister#8971: 800
What is the official name of this operator :=, introduced in 3.8?
assignment-expression operator
@rugged pike got the correct answer :tada: 100 points!
Let's move to the next question.
Remaining questions: 1
Aboo Minister#8971: 900
What dunder method is used by the tuple constructor to optimize converting an iterator to a tuple (answer should be enclosed in backticks!)?
__length_hint__
@rugged pike got the correct answer :tada: 100 points!
Remaining questions: 0
Aboo Minister#8971: 1000
The round has ended.
Congratulations @rugged pike :tada: You have won this quiz game with a grand total of 1000 points!
bam
This game consists of 10 questions.
**Rules: **
- Only enclose your answer in backticks when the question tells you to.
- If the question specifies an answer format, follow it or else it won't be accepted.
- You have 30s per question. Points for each question reduces by 25 after 10s or after a hint.
- No cheating and have fun!
Category: python
Which protocol is used to pass self to methods when accessed on classes?
20s left!
10s left!
Better luck next time...
Let's move to the next question.
Remaining questions: 9
No one has made it onto the leaderboard yet.
What decorator is used to allow a protocol to be checked at runtime?
20s left!
10s left!
No one answered correctly!
Let's move to the next question.
Remaining questions: 8
No one has made it onto the leaderboard yet.
What is the official name of this operator :=, introduced in 3.8?
20s left!
10s left!
No one answered correctly!
Let's move to the next question.
Remaining questions: 7
No one has made it onto the leaderboard yet.
How is infinity represented in Python?
20s left!
10s left!
No one answered correctly!
Let's move to the next question.
Remaining questions: 6
No one has made it onto the leaderboard yet.
Which of these is not a generator method?
(next, send, throw, close)
20s left!
10s left!
No one answered correctly!
Let's move to the next question.
Remaining questions: 5
No one has made it onto the leaderboard yet.
Name the only non-dunder method of the builtin slice object.
20s left!
10s left!
No one answered correctly!
Let's move to the next question.
Remaining questions: 4
No one has made it onto the leaderboard yet.
What is the garbage collection strategy used by cpython to collect everything but reference cycles?
20s left!
10s left!
No one answered correctly!
Let's move to the next question.
Remaining questions: 3
No one has made it onto the leaderboard yet.
Which year was Python 3 released?
20s left!
10s left!
No one answered correctly!
Let's move to the next question.
Remaining questions: 2
No one has made it onto the leaderboard yet.
What type does the & operator return when given 2 dict_keys objects?
20s left!
10s left!
I'm not so sure...
No one answered correctly!
Let's move to the next question.
Remaining questions: 1
No one has made it onto the leaderboard yet.
Is the __aiter__ method async (y/n)?
20s left!
n
@forest anvil got the correct answer :tada: 75 points!
Remaining questions: 0
Duped#7260: 75
The round has ended.
Congratulations @forest anvil :tada: You have won this quiz game with a grand total of 75 points!
This game consists of 7 questions.
**Rules: **
- Only enclose your answer in backticks when the question tells you to.
- If the question specifies an answer format, follow it or else it won't be accepted.
- You have 30s per question. Points for each question reduces by 25 after 10s or after a hint.
- No cheating and have fun!
Category: python
What name does a lambda function have?
20s left!
10s left!
um
Better luck next time...
Let's move to the next question.
Remaining questions: 6
No one has made it onto the leaderboard yet.
What type does the & operator return when given 2 dict_keys objects?
20s left!
10s left!
hmmm
No one answered correctly!
Let's move to the next question.
Remaining questions: 5
No one has made it onto the leaderboard yet.
What type is the attribute of a frame object that contains the current local variables?
20s left!
10s left!
No one answered correctly!
Let's move to the next question.
Remaining questions: 4
No one has made it onto the leaderboard yet.
Which protocol is used to pass self to methods when accessed on classes?
20s left!
10s left!
?
Better luck next time...
Let's move to the next question.
Remaining questions: 3
No one has made it onto the leaderboard yet.
What is the garbage collection strategy used by cpython to collect everything but reference cycles?
20s left!
10s left!
No one answered correctly!
Let's move to the next question.
Remaining questions: 2
No one has made it onto the leaderboard yet.
Does numbers.Rational include the builtin object float (y/n)
y
y
Let's move to the next question.
Remaining questions: 1
No one has made it onto the leaderboard yet.
Can you pickle a running list_iterator (y/n)?
20s left!
y
@forest anvil got the correct answer :tada: 75 points!
Remaining questions: 0
Duped#7260: 75
The round has ended.
Congratulations @forest anvil :tada: You have won this quiz game with a grand total of 75 points!
.quiz leaderboard
Aboo Minister#8971: 1000
Duped#7260: 150
.love @rough glade
Python#4329 ❤ CookieTheCat#1756 scored 42%!
The chance of this relationship working is not very high, but its not that low either. If you both want this relationship to work, and put time and effort into it, meaning spending time together, talking to each other etc., than nothing shall stand in your way.
.love @minor plank
Python Discord ModMail#6914 ❤ CookieTheCat#1756 scored 81%!
Your relationship will most likely work out well. Don't hesitate on making contact with each other though, as your relationship might suffer from a lack of time spent together. Talking with each other and spending time together is key.
.love joe
Unauthorized Personnel#0150 ❤ CookieTheCat#1756 scored 88%!
Your relationship will most likely work out well. Don't hesitate on making contact with each other though, as your relationship might suffer from a lack of time spent together. Talking with each other and spending time together is key.
.love joe#6000
joe#6000 ❤ CookieTheCat#1756 scored 18%!
There might be a chance of this relationship working out somewhat well, but it is not very high. With a lot of time and effort you'll get it to work eventually, however don't count on it. It might fall apart quicker than you'd expect.
lol
.love @daring swift @daring swift
Peter parker#0001 ❤ Peter parker#0001 scored 41%!
The chance of this relationship working is not very high, but its not that low either. If you both want this relationship to work, and put time and effort into it, meaning spending time together, talking to each other etc., than nothing shall stand in your way.
.love

<A:Nowthatsalotofdamage:853940430492270594> ❤ <A:Hahahaha:853940666756890625> scored 65%!
Your relationship will most likely work out. It won't be perfect and you two need to spend a lot of time together, but if you keep on having contact, the good times in your relationship will outweigh the bad ones.
lol
<A:Hemshake:836231107632300043> ❤ <:Joe_Maverick:728259206695878766> scored 29%!
The chance of this relationship working is not very high. You both need to put time and effort into this relationship, if you want it to work out well for both of you. Talk with each other about everything and don't lock yourself up. Spend time together. This will improve the chances of this relationship's survival by a lot.
.quiz general
This game consists of 7 questions.
**Rules: **
- Only enclose your answer in backticks when the question tells you to.
- If the question specifies an answer format, follow it or else it won't be accepted.
- You have 30s per question. Points for each question reduces by 25 after 10s or after a hint.
- No cheating and have fun!
Category: general
At what year did Christopher Columbus discover America?
20s left!
1492
@scarlet pewter got the correct answer :tada: 75 points!
Information
The explorer Christopher Columbus made four trips across the Atlantic Ocean from Spain: in 1492, 1493, 1498 and 1502. He was determined to find a direct water route west from Europe to Asia, but he never did. Instead, he stumbled upon the Americas
Let's move to the next question.
Remaining questions: 6
MKGamer#4164: 75
What does the acronym GPRS stand for?
20s left!
General Packet Radi Service
@scarlet pewter got the correct answer :tada: 75 points!
Information
General Packet Radio Service (GPRS) is a packet-based mobile data service on the global system for mobile communications (GSM) of 3G and 2G cellular communication systems. It is a non-voice, high-speed and useful packet-switching technology intended for GSM networks.
Let's move to the next question.
Remaining questions: 5
MKGamer#4164: 150
When did the First World War start?
20s left!
10s left!
28 july 1914
Better luck next time...
Information
The first world war began in August 1914. It was directly triggered by the assassination of the Austrian archduke, Franz Ferdinand and his wife, on 28th June 1914 by Bosnian revolutionary, Gavrilo Princip. This event was, however, simply the trigger that set off declarations of war.
Let's move to the next question.
Remaining questions: 4
1914
MKGamer#4164: 150
Which country is known as the "Land of Thunderbolt"?
Bhutan
@scarlet pewter got the correct answer :tada: 100 points!
Information
Bhutan is known as the "Land of Thunder Dragon" or "Land of Thunderbolt" due to the violent and large thunderstorms that whip down through the valleys from the Himalayas. The dragon reference was due to people thinking the sparkling light of thunderbolts was the red fire of a dragon.
Let's move to the next question.
Remaining questions: 3
MKGamer#4164: 250
Which is the largest tropical rain forest in the world?
20s left!
Amazon
@scarlet pewter got the correct answer :tada: 75 points!
Information
The Amazon is regarded as vital in the fight against global warming due to its ability to absorb carbon from the air. It's often referred to as the "lungs of the Earth," as more than 20 per cent of the world's oxygen is produced there.
Let's move to the next question.
Remaining questions: 2
MKGamer#4164: 325
Which is the smallest planet in the Solar System?
Mercury
@scarlet pewter got the correct answer :tada: 100 points!
Information
Mercury is the smallest planet in our solar system. It's just a little bigger than Earth's moon. It is the closest planet to the sun, but it's actually not the hottest. Venus is hotter.
Let's move to the next question.
Remaining questions: 1
MKGamer#4164: 425
What is the name of the largest dam in the world?
20s left!
Three Gorges
10s left!
Three Gorges Dam
@scarlet pewter got the correct answer :tada: 50 points!
Information
At 1.4 miles wide (2.3 kilometers) and 630 feet (192 meters) high, Three Gorges Dam is the largest hydroelectric dam in the world, according to International Water Power & Dam Construction magazine. Three Gorges impounds the Yangtze River about 1,000 miles (1,610 km) west of Shanghai.
Remaining questions: 0
MKGamer#4164: 475
The round has ended.
Congratulations @scarlet pewter :tada: You have won this quiz game with a grand total of 475 points!
.mosaic
.help
ValentineFacts
.who_is_valentine
Displays info about Saint Valentine.
ValentineZodiac
.zodiac <zodiac_sign>
Provides information about zodiac sign by taking zodiac sign name as input.
WikipediaSearch
.wikipedia <search>
Sends paginated top 10 results of Wikipedia search..
Wolfram
.wolfram <query>
Requests all answers on a single image, sends an image of all related pods.
WonderTwins
.formof
Command to send a Wonder Twins inspired phrase to the user invoking the command.
.pythonfact
Python was named after Monty Python, a British Comedy Troupe, which Guido van Rossum likes.
Suggest more facts here!
.quiz general
This game consists of 7 questions.
**Rules: **
- Only enclose your answer in backticks when the question tells you to.
- If the question specifies an answer format, follow it or else it won't be accepted.
- You have 30s per question. Points for each question reduces by 25 after 10s or after a hint.
- No cheating and have fun!
Category: general
What is the largest ocean in the world?
20s left!
10s left!
Pacific Ocean
No one answered correctly!
Information
The Pacific Ocean is the largest and deepest of the world ocean basins. Covering approximately 63 million square miles and containing more than half of the free water on Earth, the Pacific is by far the largest of the world's ocean basins.
Let's move to the next question.
Remaining questions: 6
No one has made it onto the leaderboard yet.
Name "the land of a thousand lakes"
20s left!
Finland
@main scarab got the correct answer :tada: 75 points!
Information
Finland is a country in Northern Europe. Sweden borders it to the northwest, Estonia to the south, Russia to the east, and Norway to the north. Finland is part of the European Union with its capital city being Helsinki. With a population of 5.5 million people, it has over 187,000 lakes. The thousands of lakes in Finland are the reason why the country's nickname is "the land of a thousand lakes."
Let's move to the next question.
Remaining questions: 5
Lt.Cmd Data#7785: 75
When did the First World War start?
20s left!
1914
@vague trellis got the correct answer :tada: 75 points!
Information
The first world war began in August 1914. It was directly triggered by the assassination of the Austrian archduke, Franz Ferdinand and his wife, on 28th June 1914 by Bosnian revolutionary, Gavrilo Princip. This event was, however, simply the trigger that set off declarations of war.
Let's move to the next question.
Remaining questions: 4
Lt.Cmd Data#7785: 75
orpheus#6678: 75
1914
Africa
spain
@main scarab got the correct answer :tada: 75 points!
Information
The Ebro river is located in Spain. It is 930 kilometers long and it's the second longest river that ends on the Mediterranean Sea.
Let's move to the next question.
Remaining questions: 3
Lt.Cmd Data#7785: 150
orpheus#6678: 75
Where is the "International Court Of Justice" located at?
usa
20s left!
copenhagen
ganeva
10s left!
swis
geneva
No one answered correctly!
Information
Let's move to the next question.
Remaining questions: 2
Lt.Cmd Data#7785: 150
orpheus#6678: 75
In which country is Bali located in?
Indonasia
@main scarab got the correct answer :tada: 100 points!
Information
Let's move to the next question.
Remaining questions: 1
Lt.Cmd Data#7785: 250
orpheus#6678: 75
Which is the largest tropical rain forest in the world?
amazon
@main scarab got the correct answer :tada: 100 points!
Information
The Amazon is regarded as vital in the fight against global warming due to its ability to absorb carbon from the air. It's often referred to as the "lungs of the Earth," as more than 20 per cent of the world's oxygen is produced there.
Remaining questions: 0
Lt.Cmd Data#7785: 350
orpheus#6678: 75
The round has ended.
Congratulations @main scarab :tada: You have won this quiz game with a grand total of 350 points!
.source
nice battle, good sir
GGs
.quiz science 10
This game consists of 10 questions.
**Rules: **
- Only enclose your answer in backticks when the question tells you to.
- If the question specifies an answer format, follow it or else it won't be accepted.
- You have 30s per question. Points for each question reduces by 25 after 10s or after a hint.
- No cheating and have fun!
Category: science
The Heisenberg's Uncertainty Principle states that the position and ________ of a quantum object can't be both exactly measured at the same time.
velocity
@prime mirage got the correct answer :tada: 100 points!
Let's move to the next question.
Remaining questions: 9
CookieTheCat#1756: 100
How does one describe a chemical reaction wherein heat is released?
exothermic
@prime mirage got the correct answer :tada: 100 points!
Let's move to the next question.
Remaining questions: 8
CookieTheCat#1756: 200
What is the name of our galaxy group in which the Milky Way resides?
local group
@prime mirage got the correct answer :tada: 100 points!
Let's move to the next question.
Remaining questions: 7
CookieTheCat#1756: 300
Which vascular tissue transports water and minerals from the roots to the rest of a plant?
xylem
@prime mirage got the correct answer :tada: 100 points!
Let's move to the next question.
Remaining questions: 6
CookieTheCat#1756: 400
About how many neurons are in the human brain?
(A. 1 billion, B. 10 billion, C. 100 billion, D. 300 billion)
@prime mirage got the correct answer :tada: 100 points!
Let's move to the next question.
Remaining questions: 5
CookieTheCat#1756: 500
As of 2021, how many elements are there in the Periodic Table?
118
@prime mirage got the correct answer :tada: 100 points!
Let's move to the next question.
Remaining questions: 4
CookieTheCat#1756: 600
Is the Richter scale (common earthquake scale) linear or logarithmic?
lograrithmic
@prime mirage got the correct answer :tada: 100 points!
Let's move to the next question.
Remaining questions: 3
CookieTheCat#1756: 700
20s left!
10s left!
No one answered correctly!
Let's move to the next question.
Remaining questions: 2
CookieTheCat#1756: 700
What is the process by which green plants and certain other organisms transform light energy into chemical energy?
photosyntessisi
@prime mirage got the correct answer :tada: 100 points!
Let's move to the next question.
Remaining questions: 1
CookieTheCat#1756: 800
What is the universal force discovered by Newton that causes objects with mass to attract each other called?
gravity
@prime mirage got the correct answer :tada: 100 points!
Remaining questions: 0
CookieTheCat#1756: 900
The round has ended.
Congratulations @prime mirage :tada: You have won this quiz game with a grand total of 900 points!
.love
Your input was invalid: who is a required argument that is missing.
Usage:.love <who> [whom]
Unauthorized Personnel#0150 ❤ doublevcodes#5496 scored 10%!
There might be a chance of this relationship working out somewhat well, but it is not very high. With a lot of time and effort you'll get it to work eventually, however don't count on it. It might fall apart quicker than you'd expect.
Unauthorized Personnel#0150 ❤ doublevcodes#5496 scored 10%!
There might be a chance of this relationship working out somewhat well, but it is not very high. With a lot of time and effort you'll get it to work eventually, however don't count on it. It might fall apart quicker than you'd expect.
lemon#3013 ❤ doublevcodes#5496 scored 26%!
The chance of this relationship working is not very high. You both need to put time and effort into this relationship, if you want it to work out well for both of you. Talk with each other about everything and don't lock yourself up. Spend time together. This will improve the chances of this relationship's survival by a lot.
Chrisjl#2655 ❤ doublevcodes#5496 scored 97%!
Your relationship will most likely work out perfect. This doesn't mean thought that you don't need to put effort into it. Talk to each other, spend time together, and you two won't have a hard time.
.love Rick
doublevcodes#5496 ❤ brad90four#1463 scored 36%!
The chance of this relationship working is not very high, but its not that low either. If you both want this relationship to work, and put time and effort into it, meaning spending time together, talking to each other etc., than nothing shall stand in your way.
.love @formal gull @slate matrix
Chrisjl#2655 ❤ joe#6000 scored 4%!
The chance of this relationship working out is really low. You can get it to work, but with high costs and no guarantee of working out. Do not sit back, spend as much time together as possible, talk a lot with each other to increase the chances of this relationship's survival.
oops sorry
i thought that won't pig
ping
but chris good choice
for example
lmao
Sorry, you can't do that here!
!e
!eval [code]
Can also use: e
*Run Python code and get the results.
This command supports multiple lines of code, including code wrapped inside a formatted code
block. Code can be re-evaluated by editing the original message within 10 seconds and
clicking the reaction that subsequently appears.
We've done our best to make this sandboxed, but do let us know if you manage to find an
issue with it!*
Jason Terror#0001 ❤ CookieTheCat#1756 scored 48%!
Your relationship has a reasonable amount of working out. But do not overestimate yourself there. Your relationship will suffer good and bad times. Make sure to not let the bad times destroy your relationship, so do not hesitate to talk to each other, figure problems out together etc.
.ping
Gateway Latency: 134ms
.love
Your input was invalid: who is a required argument that is missing.
Usage:.love <who> [whom]
.love brad90four
brad90four#1463 ❤ brad90four#1463 scored 29%!
The chance of this relationship working is not very high. You both need to put time and effort into this relationship, if you want it to work out well for both of you. Talk with each other about everything and don't lock yourself up. Spend time together. This will improve the chances of this relationship's survival by a lot.
Lol
.quiz
This game consists of 7 questions.
**Rules: **
- Only enclose your answer in backticks when the question tells you to.
- If the question specifies an answer format, follow it or else it won't be accepted.
- You have 30s per question. Points for each question reduces by 25 after 10s or after a hint.
- No cheating and have fun!
Category: cs
What is the mathematical formalism which functional programming was built on?
20s left!
10s left!
No one answered correctly!
Let's move to the next question.
Remaining questions: 6
No one has made it onto the leaderboard yet.
What is an interpreter capable of interpreting itself called?
20s left!
10s left!
No one answered correctly!
Let's move to the next question.
Remaining questions: 5
No one has made it onto the leaderboard yet.
Which of these sorting algorithms is not stable?
(Counting sort, quick sort, insertion sort, tim sort, bubble sort)
20s left!
10s left!
No one answered correctly!
Let's move to the next question.
Remaining questions: 4
No one has made it onto the leaderboard yet.
Which newline sequence does HTTP use?
20s left!
10s left!
Better luck next time...
Let's move to the next question.
Remaining questions: 3
No one has made it onto the leaderboard yet.
A hypothetical point in time at which technological growth becomes uncontrollable and irreversible, resulting in unforeseeable changes to human civilization is termed as...?
20s left!
10s left!
No one answered correctly!
Let's move to the next question.
Remaining questions: 2
No one has made it onto the leaderboard yet.
What is a HTTP/1.1 feature that was superseded by HTTP/2 multiplexing and is unsupported in most browsers nowadays?
20s left!
10s left!
No one answered correctly!
Let's move to the next question.
Remaining questions: 1
No one has made it onto the leaderboard yet.
Which of these languages is the youngest?
(Lisp, Python, Java, Haskell, Prolog, Ruby, Perl)
20s left!
Perl
10s left!
No one answered correctly!
Remaining questions: 0
No one has made it onto the leaderboard yet.
The round has ended.
.quiz
This game consists of 7 questions.
**Rules: **
- Only enclose your answer in backticks when the question tells you to.
- If the question specifies an answer format, follow it or else it won't be accepted.
- You have 30s per question. Points for each question reduces by 25 after 10s or after a hint.
- No cheating and have fun!
Category: cs
Due to what data storage medium did old programming languages, such as cobol, ignore all characters past the 72nd column?
20s left!
10s left!
Better luck next time...
Let's move to the next question.
Remaining questions: 6
No one has made it onto the leaderboard yet.
Why is a DDoS attack different from a DoS attack?
(A. because the victim's server was indefinitely disrupted from the amount of traffic, B. because it also attacks the victim's confidentiality, C. because the attack had political purposes behind it, D. because the traffic flooding the victim originated from many different sources)
20s left!
@hot dawn got the correct answer :tada: 75 points!
Let's move to the next question.
Remaining questions: 5
istipisti113#4523: 75
What is the section of a GIF that is limited to 256 colors called?
20s left!
10s left!
No one answered correctly!
Let's move to the next question.
Remaining questions: 4
istipisti113#4523: 75
Which DNS record contains mail servers of a given domain?
20s left!
10s left!
No one answered correctly!
Let's move to the next question.
Remaining questions: 3
istipisti113#4523: 75
What is a HTTP/1.1 feature that was superseded by HTTP/2 multiplexing and is unsupported in most browsers nowadays?
20s left!
a
10s left!
No one answered correctly!
Let's move to the next question.
Remaining questions: 2
istipisti113#4523: 75
What does ASCII stand for?
20s left!
10s left!
No one answered correctly!
Let's move to the next question.
Remaining questions: 1
istipisti113#4523: 75
Which newline sequence does HTTP use?
20s left!
10s left!
Better luck next time...
Remaining questions: 0
istipisti113#4523: 75
The round has ended.
Congratulations @hot dawn :tada: You have won this quiz game with a grand total of 75 points!
.quiz leaderboard
Aboo Minister#8971: 1000
CookieTheCat#1756: 900
[IS] X-82#5733: 525
MKGamer#4164: 475
Lt.Cmd Data#7785: 350
Duped#7260: 150
orpheus#6678: 75
istipisti113#4523: 75
.quiz
This game consists of 7 questions.
**Rules: **
- Only enclose your answer in backticks when the question tells you to.
- If the question specifies an answer format, follow it or else it won't be accepted.
- You have 30s per question. Points for each question reduces by 25 after 10s or after a hint.
- No cheating and have fun!
Category: retro
What is Yoshi's (from Mario Bros.) full name?
**Hint #1
**It was revealed in the Nintendo Character Guide in 1993.
youshisaur munchakoopas
@prime mirage got the correct answer :tada: 75 points!
Let's move to the next question.
Remaining questions: 6
CookieTheCat#1756: 75
What was the first game Yoshi appeared in?
**Hint #1
**The game was released in 1990.
**Hint #2
**It was released on the SNES.
.quiz stop
Quiz stopped.
your forgot the .
ok
.quiz retro 7
This game consists of 7 questions.
**Rules: **
- Only enclose your answer in backticks when the question tells you to.
- If the question specifies an answer format, follow it or else it won't be accepted.
- You have 30s per question. Points for each question reduces by 25 after 10s or after a hint.
- No cheating and have fun!
Category: retro
What year was Tetris released?
1993
**Hint #1
**It was released before the 90's.
@prime mirage got the correct answer :tada: 75 points!
Let's move to the next question.
Remaining questions: 6
CookieTheCat#1756: 75
What was Mario's original occupation?
carpenter
@prime mirage got the correct answer :tada: 100 points!
Let's move to the next question.
Remaining questions: 5
CookieTheCat#1756: 175
What was the first game Yoshi appeared in?
**Hint #1
**The game was released in 1990.
**Hint #2
**It was released on the SNES.
Better luck next time...
Let's move to the next question.
Remaining questions: 4
CookieTheCat#1756: 175
What did Nintendo make before video games and toys?
**Hint #1
**They were used alternatively to playing cards.
.quiz stop
Quiz stopped.
This game consists of 5 questions.
**Rules: **
- Only enclose your answer in backticks when the question tells you to.
- If the question specifies an answer format, follow it or else it won't be accepted.
- You have 30s per question. Points for each question reduces by 25 after 10s or after a hint.
- No cheating and have fun!
Category: retro
What did Nintendo make before video games and toys?
**Hint #1
**They were used alternatively to playing cards.
pokemon cards
hanafuda cards
@prime mirage got the correct answer :tada: 75 points!
Let's move to the next question.
Remaining questions: 4
CookieTheCat#1756: 75
What was the first game Yoshi appeared in?
super mario world
@forest anvil got the correct answer :tada: 100 points!
Let's move to the next question.
Remaining questions: 3
Duped#7260: 100
CookieTheCat#1756: 75
What was Mario's original occupation?
carpenter
@forest anvil got the correct answer :tada: 100 points!
Let's move to the next question.
Remaining questions: 2
Duped#7260: 200
CookieTheCat#1756: 75
What year was Tetris released?
1984
@forest anvil got the correct answer :tada: 100 points!
Let's move to the next question.
Remaining questions: 1
Duped#7260: 300
CookieTheCat#1756: 75
What is Yoshi's (from Mario Bros.) full name?
ummm
**Hint #1
**It was revealed in the Nintendo Character Guide in 1993.
**Hint #2
**His last name has to do with eating Mario's enemies.
No one answered correctly!
Remaining questions: 0
Duped#7260: 300
CookieTheCat#1756: 75
The round has ended.
Congratulations @forest anvil :tada: You have won this quiz game with a grand total of 300 points!
.quiz python 5
This game consists of 5 questions.
**Rules: **
- Only enclose your answer in backticks when the question tells you to.
- If the question specifies an answer format, follow it or else it won't be accepted.
- You have 30s per question. Points for each question reduces by 25 after 10s or after a hint.
- No cheating and have fun!
Category: python
When was Python first released?
1991
@prime mirage got the correct answer :tada: 100 points!
Let's move to the next question.
Remaining questions: 4
CookieTheCat#1756: 100
Which attribute is the documentation string of a function/method/class stored in (answer should be enclosed in backticks!)?
__doc__
@prime mirage got the correct answer :tada: 100 points!
Let's move to the next question.
Remaining questions: 3
CookieTheCat#1756: 200
Is everything an instance of the object class (y/n)?
y
@prime mirage got the correct answer :tada: 100 points!
Let's move to the next question.
Remaining questions: 2
CookieTheCat#1756: 300
What type is the attribute of a frame object that contains the current local variables?
dict
@prime mirage got the correct answer :tada: 100 points!
Let's move to the next question.
Remaining questions: 1
CookieTheCat#1756: 400
Which protocol is used to pass self to methods when accessed on classes?
descriptor
@prime mirage got the correct answer :tada: 100 points!
Remaining questions: 0
CookieTheCat#1756: 500
The round has ended.
Congratulations @prime mirage :tada: You have won this quiz game with a grand total of 500 points!
.quiz retro 10
This category only has 7 questions. Please input a lower value!
.quiz retro 7
This game consists of 7 questions.
**Rules: **
- Only enclose your answer in backticks when the question tells you to.
- If the question specifies an answer format, follow it or else it won't be accepted.
- You have 30s per question. Points for each question reduces by 25 after 10s or after a hint.
- No cheating and have fun!
Category: retro
What did Nintendo make before video games and toys?
Hanafuda
@versed pier got the correct answer :tada: 100 points!
Let's move to the next question.
Remaining questions: 6
JG#3205: 100
What year was Tetris released?
idk
**Hint #1
**It was released before the 90's.
1998
**Hint #2
**It was released after 1980.
Better luck next time...
Let's move to the next question.
Remaining questions: 5
JG#3205: 100
aw
What was Mario's original occupation?
**Hint #1
**The occupation was in construction
**Hint #2
**He appeared as this kind of worker in 1981's Donkey Kong
No one answered correctly!
Let's move to the next question.
Remaining questions: 4
JG#3205: 100
What is Yoshi's (from Mario Bros.) full name?
ohhh
**Hint #1
**It was revealed in the Nintendo Character Guide in 1993.
**Hint #2
**His last name has to do with eating Mario's enemies.
No one answered correctly!
Let's move to the next question.
Remaining questions: 3
JG#3205: 100
Who was Nintendo's biggest competitor in 1990?
Atari
sega'
@prime mirage got the correct answer :tada: 100 points!
Let's move to the next question.
Remaining questions: 2
JG#3205: 100
CookieTheCat#1756: 100
What is the best selling game on the Nintendo GameCube?
**Hint #1
**It is not a mainline Mario Game, although the plumber is present.
@versed pier got the correct answer :tada: 75 points!
Let's move to the next question.
Remaining questions: 1
JG#3205: 175
CookieTheCat#1756: 100
What was the first game Yoshi appeared in?
@versed pier got the correct answer :tada: 100 points!
Remaining questions: 0
JG#3205: 275
CookieTheCat#1756: 100
The round has ended.
Congratulations @versed pier :tada: You have won this quiz game with a grand total of 275 points!
fun fact: he actually appeared first in the 1991 famicom game yoshi
.quiz 10
- General
Test your general knowledge.
- Retro
Questions related to retro gaming.
- Math
General questions about mathematics ranging from grade 8 to grade 12.
- Science
Put your understanding of science to the test!
- Cs
A large variety of computer science questions.
- Python
Trivia on our amazing language, python!
.quiz Python 10
This game consists of 10 questions.
**Rules: **
- Only enclose your answer in backticks when the question tells you to.
- If the question specifies an answer format, follow it or else it won't be accepted.
- You have 30s per question. Points for each question reduces by 25 after 10s or after a hint.
- No cheating and have fun!
Category: python
Which of these is a subclass of Exception?
(NotImplemented, asyncio.CancelledError, StopIteration)
20s left!
10s left!
1
201
0
python, sdk, system
