en
Feedback
PYTHON PROGRAMMING

PYTHON PROGRAMMING

Open in Telegram

https://t.me/addlist/oJIs6WVKrqBmMWQ1 Hello! I am @Myhurthearts and welcome to the Coding channel! Here we can learn all things related to coding and improve our skills , just let me know!

Show more
3 579
Subscribers
-224 hours
+47 days
-1830 days
Posts Archive
What will be the output of the following Python expression? 0x35 | 0x75
Anonymous voting

What is the value of the following Python expression? bin(0x8)
Anonymous voting

To find the decimal value of 1111, that is 15, we can use the python statement:
Anonymous voting

Which of the following element is used for linking a External Files to the html page?
Anonymous voting

What will be the output of the following Python code snippet if x=1? x<<2
Anonymous voting

Kuch jyada hi relatable hogya πŸ˜‚ 😒 join for relatable memes πŸ‘‰ @MEMES_Z0NE

What will be the output of the following Python code if the system date is 21st June, 2017 (Wednesday)? [] or {} {} or []
Anonymous voting

What will be the output of the following Python code? l=[1, 0, 2, 0, 'hello', '', []] list(filter(bool, l))
Anonymous voting

What will be the output of the following Python expression? ~100?
Anonymous voting

What will be the output of the following Python expression? 4^12
Anonymous voting

What will be the output of the following Python expression if x=15 and y=12? x & y
Anonymous voting

Padhte padhte mood off hogya to movie aur webseries 🍿πŸŽ₯ dekh lo na https://t.me/MovieWebseriesVideo Aur apne folder me add krlo bta rhe hain fayde me rhoge πŸ˜‚ πŸ‘‰ https://t.me/addlist/QYOZWFI6axE3NzI1

What will be the output of the following Python code snippet? X=”hi” print(β€œ05d”%X)
Anonymous voting

What will be the output of the given Python code?
Anonymous voting

if (9 < 0) and (0 < -9): print("hello") elif (9 > 0) or False: print("good") else: print("bad")

What will be the output of the given Python code? class Truth: pass x=Truth() bool(x)
Anonymous voting

class Truth: pass x=Truth() bool(x)

What will be the output of the following Python code? l=[1, 0, 2, 0, 'hello', '', []] list(filter(bool, l))
Anonymous voting

What is the output of this code snippet?
Anonymous voting

x = (1, 2, 3)
x += (4, 5)
print(x)