Forwarded from Telegram Contests
Announcing the Aptitude Test Contest
Task:
Create a set of 3 Quizzes that can be used to test a person's knowledge of the English Language, their Mathematical Ability and their capacity for Spatial & Logical Thinking.
Winners will be rewarded from the remaining ~โฌ250,000 Quiz Contest prize pool.
Full details:
https://contest.com/docs/aptitude-tests
FAQ:
https://contest.com/docs/aptitude-tests#frequently-asked-questions
You must confirm your availability and register to participate. The evaluation task for entry to this contest will be held on the 9th of January 2021, at 4 pm UTC.
Task:
Create a set of 3 Quizzes that can be used to test a person's knowledge of the English Language, their Mathematical Ability and their capacity for Spatial & Logical Thinking.
Winners will be rewarded from the remaining ~โฌ250,000 Quiz Contest prize pool.
Full details:
https://contest.com/docs/aptitude-tests
FAQ:
https://contest.com/docs/aptitude-tests#frequently-asked-questions
You must confirm your availability and register to participate. The evaluation task for entry to this contest will be held on the 9th of January 2021, at 4 pm UTC.
Forwarded from Awesome Android Apps
def hello():
return 'hello 2045'Changing to
def hello:
'hello 2045'# indentation only thru tabs
TG_TOKEN=
tid=
text=
!pip install python-telegram-bot
from telegram import Bot# to get notification from colab after running
bot= Bot(TG_TOKEN)
async def send_message(text):
try:
await bot.send_message(tid,text)
except Exception as e:
print(e)
print('send message failed')
import asyncio
asyncio.set_event_loop_policy(asyncio.WindowsSelectorEventLoopPolicy())
asyncio.run(send_message(text))