python | Unsorted

Telegram-канал python - Python

135201

You will be muted until you read the rules. Read them! @Rules_for_Python A group about the Python programming language. Offtopic things go here: @pythonofftopic Resources to learn python: @pythonres Group for Hy: @hylang Selenium: @SeleniumPython

Subscribe to a channel

Python

Fo you guys use sentro?

Читать полностью…

Python

razorblade23
!report

what have i done

Читать полностью…

Python

i've wrote a python userbot on telethon

Читать полностью…

Python

Are there EBooks for Python (for total beginners?)
With not to much description but mini projects? To understand better

Because most ebooks have too much info describing story of python with not focusing on real small projects..

Читать полностью…

Python

I'm glad you proved me wrong.

Читать полностью…

Python

That exam I was "cheating" must be so long😂

Читать полностью…

Python

Yes. You cannot get output of a void function without using globals. By using using globals you make the code complicated. After calling the void function, you need to know the name of the global variable to access the result. You need to assign it to other variables if you reuse the void function. With functions that return values, everything appears to be cleaner and reusable.

Читать полностью…

Python

Teach me your ways master😂

Читать полностью…

Python

I am already in a rabbit hole trying to learn what prompt is python 😂

Читать полностью…

Python

def add(x, y):
global result_add
result_add = x + y


def get_input(prompt):
global result_input
result_input = int(input(prompt))


get_input("x")
x = result_input

get_input("y")
y = result_input

add(x, y)
print(result_add)

Читать полностью…

Python

That's not using add_void and get_input_void.

Читать полностью…

Python

I have finally hit None

Читать полностью…

Python

I am rather quite enjoying it so far

Читать полностью…

Python

Mind sharing what you have?

Читать полностью…

Python

Yeah, are you stuck? Or don't have time to work on it?

Читать полностью…

Python

cool, but don't use it here without purpose

Читать полностью…

Python

Rules in our groups are strictly enforced. It is strongly recommended to read our rules before engaging in any other activity!

Читать полностью…

Python

Check out @PythonRes, a channel for Python resources - video courses, pdf books, tutorials and other info to help you learn Python.

Читать полностью…

Python

That's for the off-topic group. But yes, I remember. What I said. Not you. I don't remember people unless they stay a while.

Читать полностью…

Python

Yes. I learned that now.
It was just an interesting thought I had.
If I am getting the same output, what makes them different?
Now I know.
Thank you for working with me.
If I have any other question, I'd know better than to tag you😂

Читать полностью…

Python

And what you did not know yet is that global variables pollute the global scope. You can assign values to it as well, not only read from them. It can get very confusing quickly.

Читать полностью…

Python

12 lines of complicated code vs just 8 lines of clear code

Читать полностью…

Python

The text to display to the user.

Читать полностью…

Python

How does it compare to this one?

def add(x, y):
return x + y


def get_input(prompt):
return int(input(f"Enter value for {prompt}: "))


x = get_input("x")
y = get_input("y")
result = add(x, y)
print(result)

Читать полностью…

Python

It's just a variable.
I had to make a problem to solve or else they'd be no end point.

Читать полностью…

Python

#monthly income
def income():
remaining_balance = int(input("Enter the remain: "))
expenses = int(input("Enter the expenses: "))
global total
total = remaining_balance + expenses
income()
print(f"your total income is: {total}")
#extended...
total = income()
print(total)

Читать полностью…

Python

Okay, then I'll be patient 😊

Читать полностью…

Python

The purpose is not to torture you but to make a point. We can go from what you have so far.

Читать полностью…

Python

I wouldn't say I am stuck but I am not making that much progress 😂

Читать полностью…

Python

It's not undoable, it's just gets messy.

Читать полностью…
Subscribe to a channel