982 subscribers
47 photos
14 videos
53 files
18 links
Here we shares graphics based desktop applications built by using Python 3.x.
Get the source code for free! and share your knowledge and opinion.

"The Night is Productive as Creative Day Is!"

Language : ( Hindi + English ) only.

India
Download Telegram
๐Ÿ‘1
๐Ÿ‘3
Hello TPG'ians Greetings of the Day!!
Suggest Any Project which You wish to be the Next Post Here..

[will be created using django or tkinter]
๐Ÿ‘1
This media is not supported in your browser
VIEW IN TELEGRAM
This media is not supported in your browser
VIEW IN TELEGRAM
๐Ÿ‘7
Next Project => Event Reminder and Note!!
๐Ÿ‘15
This media is not supported in your browser
VIEW IN TELEGRAM
This media is not supported in your browser
VIEW IN TELEGRAM
This media is not supported in your browser
VIEW IN TELEGRAM
๐Ÿ‘5
๐Ÿ‘1
This media is not supported in your browser
VIEW IN TELEGRAM
โค2๐Ÿ‘2
Python pinned Deleted message
Channel name was changed to ยซPythonยป
What will be the output of the following Python code?

def add_items(val, lst=[]): lst.append(val) return lst result1 = add_items(1) result2 = add_items(2) print(result2)
Anonymous Quiz
4%
[1]
48%
[2]
46%
[1,2]
2%
[2,1]
๐Ÿ‘2
Python
What will be the output of the following Python code?

def add_items(val, lst=[]): lst.append(val) return lst result1 = add_items(1) result2 = add_items(2) print(result2)
code:

def add_items(val, lst=[]):
lst.append(val)
return lst

result1 = add_items(1)
result2 = add_items(2)
print(result2)
โค1๐Ÿ‘1
What will be the output of the following code?

x = "hello" print(x[::-1])
Anonymous Quiz
13%
hello
71%
olleh
10%
error
6%
h e l l o
โค3