this post was submitted on 12 Jun 2024
43 points (93.9% liked)
Python
6356 readers
8 users here now
Welcome to the Python community on the programming.dev Lemmy instance!
π Events
Past
November 2023
- PyCon Ireland 2023, 11-12th
- PyData Tel Aviv 2023 14th
October 2023
- PyConES Canarias 2023, 6-8th
- DjangoCon US 2023, 16-20th (!django π¬)
July 2023
- PyDelhi Meetup, 2nd
- PyCon Israel, 4-5th
- DFW Pythoneers, 6th
- Django Girls Abraka, 6-7th
- SciPy 2023 10-16th, Austin
- IndyPy, 11th
- Leipzig Python User Group, 11th
- Austin Python, 12th
- EuroPython 2023, 17-23rd
- Austin Python: Evening of Coding, 18th
- PyHEP.dev 2023 - "Python in HEP" Developer's Workshop, 25th
August 2023
- PyLadies Dublin, 15th
- EuroSciPy 2023, 14-18th
September 2023
- PyData Amsterdam, 14-16th
- PyCon UK, 22nd - 25th
π Python project:
- Python
- Documentation
- News & Blog
- Python Planet blog aggregator
π Python Community:
- #python IRC for general questions
- #python-dev IRC for CPython developers
- PySlackers Slack channel
- Python Discord server
- Python Weekly newsletters
- Mailing lists
- Forum
β¨ Python Ecosystem:
π Fediverse
Communities
- #python on Mastodon
- c/django on programming.dev
- c/pythorhead on lemmy.dbzer0.com
Projects
- PythΓΆrhead: a Python library for interacting with Lemmy
- Plemmy: a Python package for accessing the Lemmy API
- pylemmy pylemmy enables simple access to Lemmy's API with Python
- mastodon.py, a Python wrapper for the Mastodon API
Feeds
founded 1 year ago
MODERATORS
you are viewing a single comment's thread
view the rest of the comments
view the rest of the comments
So what it comes down to is that
int()
,float()
, andinput()
(as well asprint()
) are functions that you are calling. In the case ofint()
andfloat()
, they return (simply put, when you make a function call it "becomes" the return value) anint
orfloat
type object based on the argument (the value between the parentheses) that you passed in. In the case ofprint()
, it causes the program to print out the provided argument.input()
is a little more complicated. It prints out the provided argument (in your case:Who are you?
) and then puts the program on pause while it waits for the user to input some text and press enter. Once they have done so, theinput
function returns the text the user has entered. So as mentioned before, the codeinput('Who are you? ')
"becomes" the text the user input, which then gets assigned to the variablenam
.I think where you may be getting confused is what exactly defines "text". The only things that python considers text (referred to as a
string
) are characters surrounded by "" or ''. In your example,input('Who are you? ')
is not a string, but code to be executed (although the argument being passed toinput
,'Who are you? '
, is a string). As an experiment, try surrounding that code with quotation marks (name = "input('Who are you? ')"
) and see what happens!Oh! I get it now!
It's because while int() and float() are instantaneous, while input() uses the fourth dimension, time, and thus depends on a future input by the user. (May not make sense the way I'm putting it, but it makes sense to me. Lol.) In other words, while float() and int() have all the data they need to produce an output (i.e. what's in the parentheses), input() "outputs" the text in the parentheses, then puts itself into a pending state to await further user input, then outputs that second user input.
Am that about the right of it? :)
Yes, you got the gist of how it works.
To give a bit more context, functions are basically snippets of code that are executed when called. One way to look at the
input("What's your name?")
function is this (not how the actual function looks like, just an abstraction):That
return
is something you will see often in many functions, and when you call a function, that's the result it sends to the line that called. So, ifinput
was actually coded like this:Every time you called it, you would receive 1 as a result. In your example,
nam = input('Who are you? ')
would always assign 1 to nam, because the return is 1 rather than the variable that receives whatever you typed in.That's so cool! Thank you!
U got this π
Yay!
The only actual good answer.