Gray_Hat_Python_Python_Programming_for_Hackers_and_Reverse_Engineers.pdf
3 MB
Hacking with python
Advance tkinnter guide widgets and events.pdf
2.1 MB
Python tkinter widgets and events
2020-12-30 20_40_59-Window.png
11.1 KB
New Program ... 🔥🔥Create your own SQL browser 🔥using Python👍
SQL browser.py
2.8 KB
Source code for app.. share with everyone who are learning python❤️❤️❤️❤️
Happy New Year..😍
Anonymous Poll
52%
Wish You The Same
29%
Happy New Year
19%
Helll yeah😍Happy New year
Python Quiz..
list =(1,2,3,4,5) list.append(6) print(list) What is output?
list =(1,2,3,4,5) list.append(6) print(list) What is output?
Anonymous Poll
4%
[1,2,3,4,5,6,7]
5%
(1,2,3,4,5,6,6)
37%
Error
53%
(1,2,3,4,5,6)
Python
Python Quiz..
list =(1,2,3,4,5) list.append(6) print(list) What is output?
list =(1,2,3,4,5) list.append(6) print(list) What is output?
So Answer is Error .. beacuse here we are adding a value in tuple through append method tupple dont have any attribute like append() .. If that was a list then only it will work as appen() is a method of list()