stdin / stdout / stderr (beginner - intermediate) anthony explains #050

preview_player
Показать описание
today I talk about the standard streams (stdin / stdout / stderr) as well as their conventional uses!

==========

I won't ask for subscriptions / likes / comments in videos but it really helps the channel. If you have any suggestions or things you'd like to see please comment below!
Рекомендации по теме
Комментарии
Автор

Nice. Thank you for mentioning Ctrl+D (for EOF).
I wanted to test wc (bcs im writing my own implementation in C) with the stdin but didnt know how to signal EOF to it.

TheVertical
Автор

nice short and informative video! I started writing command applications on Python with click and needed some clarification. Thanks!

ignaciomarin
Автор

Thanks for this video! Before, I heard a lot to use logging module over print(), but I went too far with that by displaying CLI app user output using logging.info()...

Is there any practical advantage of sys.stdout.write() over print()?

Bryft
Автор

i am a python noob is there any use they can be of to me in any program or is it just for understanding how python works internally

mridulmaikhuri
Автор

What does !R stand for in sys.stdin.read() !r ??

Sajithkumar
Автор

What exactly does sys.stdout.flush() do?

bx