How To Scare C++ Programmer

  Рет қаралды 661,221

Virbox

Virbox

Күн бұрын

Пікірлер: 1 700
@Collector2006
@Collector2006 2 жыл бұрын
One time I decided to learn Python. I bought books, registered for a class at a local university. After 2 classes I realized I already knew python. Because Python is just C++ for kids. And I have the maturity of a 7 year old.
@unknownstoneageman81
@unknownstoneageman81 2 жыл бұрын
@@HuntingKingYT Holy shit. No cap?
@boxinabox6608
@boxinabox6608 2 жыл бұрын
@@HuntingKingYT you always had this coming... Who asked?
@calou6270
@calou6270 2 жыл бұрын
@@boxinabox6608 Hi, i'm the guy who asked, enjoy :)
@sadzake
@sadzake 2 жыл бұрын
@@boxinabox6608 I also, indeed, asked
@VelikiFeniks
@VelikiFeniks 2 жыл бұрын
Python is not for kids
@ahuman32478
@ahuman32478 2 жыл бұрын
How do you scare a C++ programmer? Show them their own code
@spicychad55
@spicychad55 2 жыл бұрын
Show them Asssembly code!👾
@DissociatedWomenIncorporated
@DissociatedWomenIncorporated 2 жыл бұрын
@@spicychad55 show them INTERCAL!
@Flowery0
@Flowery0 2 жыл бұрын
No, they might grow resistant to it. Show them MY code Also, you can make them learn python, while simultaneously not dropping C++. Then, make them write a program (without compiling it and without copying from other sources) in python and in 10 minutes(after start) make them write the same one in C++(also without compiling it and without copying from other sources). Repeat until they're done. After that, compile both programs. Profit
@ramiel7666
@ramiel7666 2 жыл бұрын
And say there's 1 mistake there, but don't tell them what it is.....
@Chadius_Thundercock
@Chadius_Thundercock 2 жыл бұрын
For some reason that reminds me of the punisher meme of him screaming “WAIT WAIT WAIT” while sobbing
@Eknoma
@Eknoma 2 жыл бұрын
1) IO operations take about, I dunno, like 1000 times as long as most other instructions, and are completely done by the OS. Which means that IF you managed to write the same code in both languages, you would get basically the same speed. 2) However you did not write the same code, the Python program (probably) reads larger chunks of the file at a time, and since reading 1 byte and reading 4kB takes approximately the same amount of time, it obviously takes less time 3) You are using completely different data structures. In Your Python program, you are using IMMUTABLE STRINGS, so they can safely avoid copying, and instead just reference the input data, while your C++ strings are MUTABLE, so they (likely) have to copy the data
@pixelitedragon1720
@pixelitedragon1720 2 жыл бұрын
To add to Point 1, IO operations are slow cause, if i remember correctly, they don’t include buffering so the program have to fetch data from the main memory instead of using a cache
@gamersunite9026
@gamersunite9026 2 жыл бұрын
god bless you bro, was actually gonna go insane for a moment because thats literally not possible
@carlomaggiolo2180
@carlomaggiolo2180 2 жыл бұрын
Thanksssss. Other hours of study, do have you got any advice to learn these small details?
@nano0110
@nano0110 2 жыл бұрын
@@carlomaggiolo2180 1+
@furo.v
@furo.v 2 жыл бұрын
@@pixelitedragon1720 is it? I think cache useage is transparent to all programs (OS included) (programs can't choose whether to use main memory or cache)
@Mr.Not_Sure
@Mr.Not_Sure 2 жыл бұрын
Now the good part: in C++ you can improve the code so it runs much faster. In python you can do not much to improve unless you write a wrapper which calls C++.
@soanvig
@soanvig 2 жыл бұрын
Well actually you CAN improve interpreted languages perfomance a lot. In any algo there are optimizable bottlenecks. The difference is that you can push optimization farther if you are using language with memory control
@andresidk8282
@andresidk8282 2 жыл бұрын
@@soanvig for loops in python moment (don't tell me about map() )
@casusbelli9225
@casusbelli9225 2 жыл бұрын
You can improve the code written in python. Write it in C++
@sid6415
@sid6415 2 жыл бұрын
@@soanvig And the fastest you can take python is by calling a c++ code anyway.
@onyilimba
@onyilimba 2 жыл бұрын
@@sid6415 I believe its c not c++
@Lightn0x
@Lightn0x 2 жыл бұрын
This is why C++ is reserved for people who know what they are doing :D
@cpK054L
@cpK054L 2 жыл бұрын
I have no idea what I'm doing... ....and I'm currently using STM32 ARM C
@ownedbyptr
@ownedbyptr Жыл бұрын
@@cpK054L currently writing Borland C for DOS
@sunfix991
@sunfix991 Жыл бұрын
i want to know :o(
@simonharris4873
@simonharris4873 9 ай бұрын
@@ownedbyptr Ah... those were the days.
@computerscience3836
@computerscience3836 9 ай бұрын
Truth!
@MasterSergius
@MasterSergius 2 жыл бұрын
I thought C++ programmers can't be scared, they already live in an eternal fear
@janisir4529
@janisir4529 2 жыл бұрын
C++ is great once you learned the million most common way to foot gun yourself.
@creatorofimages7925
@creatorofimages7925 2 жыл бұрын
@@janisir4529 Correction, not "foot gun"! Blowing your leg off.
@janisir4529
@janisir4529 2 жыл бұрын
@@creatorofimages7925 It's technically "shoot yourself in the foot" but I prefer it my way.
@creatorofimages7925
@creatorofimages7925 2 жыл бұрын
@@janisir4529 nono, u misunderstand. it is a refernce with a comparison between c and c++ :D if u fuck up memory management in c u can shoot urself in the foot in C but in C++ u probably blow your entire leg off if something goes wrong :D
@janisir4529
@janisir4529 2 жыл бұрын
@@creatorofimages7925 What? The most likely outcome in both cases is an access violation crash.
@boeing-747
@boeing-747 2 жыл бұрын
C++ cin and cout streams are very slow by default because they have to wait and sync with the C standard streams. Add std::ios_base::sync_with_stdio(false); and run the test again
@monologicaly
@monologicaly 2 жыл бұрын
Or just learn lua instead of using either of these shitcodes
@boeing-747
@boeing-747 2 жыл бұрын
@@monologicaly you can't really compare the two, they have entirely different use cases
@deathbell616
@deathbell616 2 жыл бұрын
Not ios_base::sync_with_stdio(false); ?
@deathbell616
@deathbell616 2 жыл бұрын
With 'std', yep
@boeing-747
@boeing-747 2 жыл бұрын
@@deathbell616 yeah sorry, it's std::ios_base
@KolMan2000
@KolMan2000 2 жыл бұрын
It would actually mean it’s 33% slower. 150% is a 50% increase, but going back down is only a 33% decrease
@gwch3481
@gwch3481 2 жыл бұрын
It's 50 percent points slower
@goutgueule9197
@goutgueule9197 2 жыл бұрын
@@gwch3481 that makes no sense "50 percent points" doesn't exitst
@dysrhythmic
@dysrhythmic 2 жыл бұрын
@@goutgueule9197 google percentage points right now then come back here and apologize to the guy
@SolomonUcko
@SolomonUcko 2 жыл бұрын
@@dysrhythmic percentage points is a thing but it doesn't apply in this context; it only applies when the values being compared are themselves percentages
@goutgueule9197
@goutgueule9197 2 жыл бұрын
@@dysrhythmic ok ok sorry but i had never heard of that and to me it made no sense
@tophatty
@tophatty 2 жыл бұрын
using namespace std was the scariest part
@mr.potatoman2409
@mr.potatoman2409 2 жыл бұрын
My teacher in school tells us to use 'using namespace std' and it's scary af
@knowledgenews5343
@knowledgenews5343 2 жыл бұрын
Why?
@tophatty
@tophatty 2 жыл бұрын
@@knowledgenews5343 there's a whole stack overflow page about the issues with it and I just think typing std:: before everything is a good habit anyway
@MoolsDogTwoOfficial
@MoolsDogTwoOfficial 9 ай бұрын
@@knowledgenews5343Basically it pollutes the global namespace with std functions which potentially could cause function name collisions.
@computerscience3836
@computerscience3836 9 ай бұрын
That told us everything we needed to know, didn't it?
@lokeshmishra4400
@lokeshmishra4400 2 жыл бұрын
you can't scare a c++ deeloper dude, in python you've read the whole chunk at once, but in case of C++ you're reading it line by line --- causing more input operations resulting in more time, in fact i'm impressed that c++ takes this less time for a million input operations more than python.
@Nohomosapien
@Nohomosapien 2 жыл бұрын
When the comparison is fair: kzbin.info/www/bejne/jJrSqaaNjt-igM0
@deadeye1982a
@deadeye1982a 2 жыл бұрын
Yes, sys.stdin is buffered. The iterator iterates over the internal buffer line by line. The assignment does not have any effect. The bytecode-compiler will remove this line. If you want to test the speed of the languages, then you have to take IO away. Both tests require the same conditions, and it's not the case with the example code.
@RealLostmatter
@RealLostmatter 6 ай бұрын
oo lemme try! java
@deice3
@deice3 2 жыл бұрын
So true, it scares me how lacking Python programmers seem to be at designing benchmarks.
@vladislavakm386
@vladislavakm386 9 ай бұрын
print("0.138 s")
@computerscience3836
@computerscience3836 9 ай бұрын
Python programmer is a bit of a stretch. Python is about a half step up from Scratch. It is a toy language.
@IllidanS4
@IllidanS4 8 ай бұрын
Python programmers are bad at designing anything.
@abcdef-ms9mb
@abcdef-ms9mb 5 ай бұрын
@@computerscience3836 You're a toy programmer if you don't recognize that different tools have different use cases lmao
@vidal9747
@vidal9747 2 ай бұрын
@@computerscience3836 You sound like my college professor. He refuses to teach anything but Fortran 77 (in 2024). He doesn't understand that different languages have its places. Why the hell would I create a plot in C++ when I can scratch together a notebook and do it faster in matplotlib? Every language has its place. (except Java).
@Far-Reez
@Far-Reez 2 жыл бұрын
Just be honest... For me, C++ still comfortable than python. Don't know why, but by putting "{ }" feels.... AESTHETIC
@flashroyal9933
@flashroyal9933 2 жыл бұрын
i thought i am the only one that feels the same about c/c++ vs python lol
@AURORAFIELDS
@AURORAFIELDS 2 жыл бұрын
I will remain unhappy with significant whitespace. it makes sense but is also evil
@MoNsTeCoRe
@MoNsTeCoRe 2 жыл бұрын
For me not realy that {} feels good, but pythons way of handling that with indentation feels absolutely horrendous
@catthebutcher9438
@catthebutcher9438 2 жыл бұрын
It has more flexibility with {} and ; Also you do not need the right amount of SPACES.. yes right SPACES! not TABS! It has to compile and tells you about lang mistakes before running program not in the middle of running. And I forgot. You define type of variable so you know what it is. In python you come bck to large old code and have no idea what type a variable is cD
@porterhouse937
@porterhouse937 2 жыл бұрын
That’s one of the major reasons I hate Python, the code looks broken to me without brackets coming from C
@ChrisContin
@ChrisContin 2 жыл бұрын
Python will often use a single memread to open and contain files, which allows for a speed-use of large files, but C++ would not optimize that unless specifically instructed! Fun video, thanks!
@andrewwhiteman8892
@andrewwhiteman8892 2 жыл бұрын
Then what's the optimized code? Can you show me?
@ChrisContin
@ChrisContin 2 жыл бұрын
@@andrewwhiteman8892 Sure! In C++ the code is "memtemplate" or "memcpy", which are implemented through a memset operation in C-lib. All code in the C-lib environment is pretty outdated, but you can create a similar function in this way: global ptr* load-file func { # pseudo-code for loading a file from disk into memory, using chunks aligned with page and disk-block size findChunkSize(useCurrentDisk is true) store in localVar ChunkSize; # this needs to find the largest, common size that fits in both one page size, which is how many bytes are loaded by the operating system for a single-use, and one block size, which is how many bytes are read by the hard-disk in a single read operation readOneChunk(useSingleChunkIO is true) store in localVar SingleChunk; # would need the block-place of the file in question, as well as localVar ChunkSize, etc, which are often omitted in pseudo-code, as it is a guide only, but I thought to mention as I would write it in! ConfirmChunkIsRead() returns true or false, test; # sometimes the disk is too busy to read and will fail, etc. By pseudo-code rules, no exception handling is needed, but here would be one UseSingleChunkFollowOn(pass-in SingleChunk, useDigitalSideIO is true) store in localVarArray AllChunksOfFile; # the SingleChunk is already measured, and includes where it was found for easy read-on-- DigitalSideIO is a boolean true or false for whether to follow the chunks as an abstract "file" (which We want) or literally as blocks on disk (for simpler I/O) # all chunks are read, and now are stored for access outside of the same-func. UseGlobalAlloc(sizeof AllChunksOfFile, cache-memread pass-in AllChunksOfFile) as return } Python uses a smaller form of this same function to cache exactly 1 MB or so. The later versions of Python will attack the file in different ways to further improve system-side caching without having to test if there is a large memread cache on disk, in the operating system, or other ways. All of this code is in Python's "memread" and "system IO call-func" parts, in case you're further interested. Take care!
@ZihadJoy
@ZihadJoy 9 ай бұрын
bruhh what the fck is this @@ChrisContin
@jaideepshekhar4621
@jaideepshekhar4621 5 ай бұрын
Even just removing sync io with stdio makes it much faster than python.
@realdragon
@realdragon 4 ай бұрын
You mean like mmap?
@jaysistar2711
@jaysistar2711 2 жыл бұрын
You compared buffered I/O in Python to direct I/O in C++.
@Raspredval1337
@Raspredval1337 2 жыл бұрын
hot take: if you really wanna scare c++ programmes, you should ask them to use std::find on an array of some structs and then try to read the compile error, lmao.
@elia0162
@elia0162 2 жыл бұрын
can you write the compile error here ?
@Raspredval1337
@Raspredval1337 2 жыл бұрын
@@elia0162 here it is: Executing task: /usr/bin/g++ -fdiagnostics-color=always -O3 -mavx /home/***/Projects/cpp/testing/source/*.cpp -o /home/***/Projects/cpp/testing/bin/release/out -Wall -Wextra -Wconversion -Wpedantic -Werror -std=c++20 -lfmt /home/***/Projects/cpp/testing/source/main.cpp: В функции «int main()»: /home/***/Projects/cpp/testing/source/main.cpp:289:22: ошибка: не найден метод для преобразования в «(const std::ranges::__find_fn) (main()::Test [50], main()::Test)» 289 | std::ranges::find(lpTest, Test{5, 7}); | ~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~ In file included from /usr/include/c++/12.2.0/ranges:47, from /home/***/Projects/cpp/testing/source/main.cpp:3: /usr/include/c++/12.2.0/bits/ranges_util.h:445:7: замечание: candidate: «template requires (input_iterator) && (sentinel_for) && (indirect_binary_predicate) constexpr _Iter std::ranges::__find_fn::operator()(_Iter, _Sent, const _Tp&, _Proj) const» 445 | operator()(_Iter __first, _Sent __last, | ^~~~~~~~ /usr/include/c++/12.2.0/bits/ranges_util.h:445:7: замечание: вывод/подстановка аргумента шаблона неудачна: /home/***/Projects/cpp/testing/source/main.cpp:289:22: замечание: кандидат ожидает 4 аргумента, 2 предоставлено 289 | std::ranges::find(lpTest, Test{5, 7}); | ~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~ /usr/include/c++/12.2.0/bits/ranges_util.h:459:7: замечание: candidate: «template requires (input_range) && (indirect_binary_predicate) constexpr std::ranges::borrowed_iterator_t std::ranges::__find_fn::operator()(_Range&&, const _Tp&, _Proj) const» 459 | operator()(_Range&& __r, const _Tp& __value, _Proj __proj = {}) const | ^~~~~~~~ /usr/include/c++/12.2.0/bits/ranges_util.h:459:7: замечание: вывод/подстановка аргумента шаблона неудачна: /usr/include/c++/12.2.0/bits/ranges_util.h:459:7: замечание: constraints not satisfied In file included from /usr/include/c++/12.2.0/compare:39, from /usr/include/c++/12.2.0/bits/stl_pair.h:65, from /usr/include/c++/12.2.0/bits/stl_algobase.h:64, from /usr/include/c++/12.2.0/bits/specfun.h:45, from /usr/include/c++/12.2.0/cmath:1935, from /usr/include/fmt/format.h:36, from /home/***/Projects/cpp/testing/source/main.cpp:1: /usr/include/c++/12.2.0/concepts: В подстановке «template requires (input_range) && (indirect_binary_predicate) constexpr std::ranges::borrowed_iterator_t std::ranges::__find_fn::operator()(_Range&&, const _Tp&, _Proj) const [с _Range = main()::Test (&)[50]; _Tp = main()::Test; _Proj = std::identity]»: /home/***/Projects/cpp/testing/source/main.cpp:289:22: required from here /usr/include/c++/12.2.0/concepts:336:13: required for the satisfaction of «invocable» [с _Fn = std::ranges::equal_to&; _Args = {main::Test&, main::Test&}] /usr/include/c++/12.2.0/concepts:340:13: required for the satisfaction of «regular_invocable» [с _Fn = std::ranges::equal_to&; _Args = {main::Test&, main::Test&}] /usr/include/c++/12.2.0/concepts:344:13: required for the satisfaction of «predicate» [с _Fn = std::ranges::equal_to; _I2 = const main::Test*; _I1 = std::projected] /usr/include/c++/12.2.0/bits/iterator_concepts.h:716:13: required for the satisfaction of «indirect_binary_predicate» [с _Range = main::Test (&)[50]; _Proj = std::identity; _Tp = main::Test] /usr/include/c++/12.2.0/concepts:336:25: замечание: the expression «is_invocable_v [с _Fn = std::ranges::equal_to&; _Args = {main::Test&, main::Test&}]» evaluated to «false» 336 | concept invocable = is_invocable_v; | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~ * The terminal process "/usr/bin/bash '-c', '/usr/bin/g++ -fdiagnostics-color=always -O3 -mavx /home/raspredval/Projects/cpp/testing/source/*.cpp -o /home/***/Projects/cpp/testing/bin/release/out -Wall -Wextra -Wconversion -Wpedantic -Werror -std=c++20 -lfmt'" terminated with exit code: 1.
@TheArtikae
@TheArtikae 2 жыл бұрын
@@elia0162 Probably not. That’s the problem.
@elia0162
@elia0162 2 жыл бұрын
@@TheArtikae lol wtf it is messed up
@mrkiky
@mrkiky 2 жыл бұрын
Or read any compile error that has anything to do with the wrong data type.
@demynemy7428
@demynemy7428 9 ай бұрын
How to scare Python developers: POINTERS
@alichamas63
@alichamas63 2 жыл бұрын
Haha good one. This is why python has been traditionally used for embedded, realtime, OS, games, heavy desktop apps, and writing other major tools and runtimes...oh wait
@Phantom-lr6cs
@Phantom-lr6cs 2 жыл бұрын
python is slow tortoise ; when it becomes larger your program becomes slow as tortoise ; maybe this dude has 256 gb ram and that's why python is fast ; go and test it in the slow pc with 2 or 4 gb ram and you will see
@emireri2387
@emireri2387 2 жыл бұрын
@@Phantom-lr6cs fun fact: you said to test it in a slow pc with 2 or 4gb ram, so you just pushed the blame on depending on how fast the pc is, also dude doesnt have 256gb no one has 256gb ram plugged to one pc
@johnwig285
@johnwig285 2 жыл бұрын
just to be replaced by a Java developer 🤷🏽‍♂️
@davidwuhrer6704
@davidwuhrer6704 2 жыл бұрын
@@Phantom-lr6cs Windows user detected. More RAM doesn't make your programmes run faster, unless your OS is constantly thrashing.
@cpK054L
@cpK054L 2 жыл бұрын
@@Phantom-lr6cs the only thing RAM would be affected by...is the bus speed....and even then it barely matters if your COU bottlenecks it
@mousey942
@mousey942 2 жыл бұрын
This video is anti c++ propaganda watch out for these litteral python snakes
@WewAuction
@WewAuction 4 ай бұрын
yeah that's right bro😂😂
@Tristoo
@Tristoo 2 жыл бұрын
The fact that a python programmer would think using I/O to test code performance is something reasonable, is exactly why this video makes the opposite point it's trying to.
@polnapanda4934
@polnapanda4934 2 жыл бұрын
Man this video is a joke
@schlopping
@schlopping 2 жыл бұрын
The fact that you couldn't see that this is obviously a joke, is exactly why the video makes the point it's trying to.
@spyrex3988
@spyrex3988 2 жыл бұрын
And I/O operation with different data structures too
@dwightk.schrute8696
@dwightk.schrute8696 2 жыл бұрын
class TrisT: public Butthurt {}
@mikicerise6250
@mikicerise6250 2 жыл бұрын
I was affrendered, as a letter C.
@rowdyriemer
@rowdyriemer 2 жыл бұрын
As someone who is a c++ programmer who also does a bit of python occasionally, sure, as others have pointed out, there's ways of making the c++ version much faster. But unless I really needed the optimization, for something simple like this, I'd probably use python.
@ZihadJoy
@ZihadJoy 9 ай бұрын
well yeah thats why python was invented i guess
@satriadicky3732
@satriadicky3732 2 ай бұрын
How do you start as a programmer and what should be learnt to pass as a programmer myself? I only know std::cout, struggling with std::cin, and thought namespace is useless.
@КостяКиндалюк
@КостяКиндалюк 2 жыл бұрын
Testing LANGUAGES speed by calling functions handled by OPERSTING SYSTEM is like comparing milk quality by comparing their price - may look connected, but sometimes can fool you
@aavezshaikh8442
@aavezshaikh8442 2 жыл бұрын
0:56 The maths ain't mathing here 🗿
@fedzalicious
@fedzalicious 2 жыл бұрын
Actually, based on your questionable figures, it's 33% slower. Or you could say Python is 50% faster. You need to work on your math skills.
@fraser21
@fraser21 2 жыл бұрын
I mean ya, but in an extremely io-throttled environment you’re basically testing every component *except* the language itself
@lorli_
@lorli_ 2 жыл бұрын
Horrors: Not scary This video: 💀
@roland144
@roland144 2 жыл бұрын
Now disable sync: std::ios_base::sync_with_stdio(false); Or better yet, use this for reading: FILE *fin, *fout; int rpos; char rbuf[BUFSIZE]; int wpos; char wbuf[BUFSIZE]; static inline void initRead() { rpos = BUFSIZE - 1; } static inline char readChar() { if ( !(rpos = (rpos + 1) & (BUFSIZE - 1)) ) fread( rbuf, 1, BUFSIZE, fin ); return rbuf[rpos]; }
@kaloka521
@kaloka521 2 жыл бұрын
This code only does what it is supposed to if buffsize is a power of 2. Also why are you defining a write buffer???
@kaloka521
@kaloka521 2 жыл бұрын
Still really cool code thanks for sharing :)
@roland144
@roland144 2 жыл бұрын
@@kaloka521 I copied the code from another project which also had to write to the file and forgot to remove that, oops
@vladimir0rus
@vladimir0rus 10 күн бұрын
Why when people want to show a fast C++ they always comes to pure C? 😂
@Sehyo
@Sehyo 2 жыл бұрын
You need to call std::ios_base::sync_with_stdio(false); before doing this if you want fast performance. Example is made by an unexperienced dev.
@aaarkid
@aaarkid 2 жыл бұрын
The reason here is that Python doesn't read and write the line into a string, it's only reading the new line characters from the stack and counting. C++ is reading and writing every line into the heap, this is vastly different and therefore the reason it runs slower.
@andrewwhiteman8892
@andrewwhiteman8892 2 жыл бұрын
Then what's the optimized code? Can you show me?
@aaarkid
@aaarkid 2 жыл бұрын
@@andrewwhiteman8892 ```cpp int count = 0; for (char c = cin.get(); cin; c = cin.get()) { if (c == ' ') { count++; } }``` Chars live in the stack.
@keithskinner6188
@keithskinner6188 2 жыл бұрын
@@aaarkid remember to unsync with cstdio and you're gold pony boy
@VictorGabriel-ht5qp
@VictorGabriel-ht5qp 6 ай бұрын
​@@aaarkidI just tried this code and the perfomance is worse than the one in the video, the best method I found was to read the file with fstream, it became insanely faster, and when we read the whole file with Python its performance keeps the same
@leofun01
@leofun01 15 күн бұрын
01:10 - "learn phtyon". ok.
@Jasturtle
@Jasturtle 2 жыл бұрын
C++ is super easy, just need another 2 more lifetimes to master it
@Raspredval1337
@Raspredval1337 2 жыл бұрын
lol, it IS easy, in fact, it is way easier than c for example
@felipe7466
@felipe7466 2 жыл бұрын
@@Raspredval1337 you think so? Do you mind explaining why is that the case (I think C++ is way harder, the amount of syntax and features are just insane)?
@flashroyal9933
@flashroyal9933 2 жыл бұрын
@@Raspredval1337 wtF?
@Jasturtle
@Jasturtle 2 жыл бұрын
@@Raspredval1337 yeah especially when you should be doing c in another few more lifetimes, but that lifetime lifespan you're having is 50+ years < my lifetime lifespan of 2 lifetimes Xd
@TheDragShot
@TheDragShot 2 жыл бұрын
@@Raspredval1337 C++ is like Soldier from TF2: very easy to learn, extremely hard and long to master.
@PuffyNutty
@PuffyNutty 5 ай бұрын
How to scare a c++ programmer? External libraries.
@im_auspicious4473
@im_auspicious4473 2 жыл бұрын
Now imagine if we try python for games 💀
@davidwuhrer6704
@davidwuhrer6704 2 жыл бұрын
import pygame
@Sumirevins
@Sumirevins 2 жыл бұрын
@@davidwuhrer6704 One can use Pycharm and pygame. But it'll be much harder since most game engines use C#. So, you've to do it without Advanced features which increase the difficulty level tremendously.
@davidwuhrer6704
@davidwuhrer6704 2 жыл бұрын
@@Sumirevins Akshually scripting in python does not sacrifice any features, quite the opposite, it makes them more accessible and adds new ones. Nor is scripting in python more difficult that writing C#. One of the major selling points of python is how easy it is to write something readable in it. And most game engines are written in C++. Only Microsofties use C#.
@Entwolker
@Entwolker 2 жыл бұрын
that jump scare at the end scared the hell out of me
@adityachandran7002
@adityachandran7002 2 жыл бұрын
i have done alot of coding in both cpp and python, and honestly, cpp feels alot more comfortable. one of my friends said this : "when i code in cpp, it feels like i m coding, but in python, it feels like writing english."
@solidfuel0
@solidfuel0 2 жыл бұрын
My sht has more wisdom than your friend.
@davidwuhrer6704
@davidwuhrer6704 2 жыл бұрын
Literate programming at last. Don Knuth will be so happy.
@mage3690
@mage3690 2 жыл бұрын
And then every Python dev ever looks at that statement and says something like "I know. Isn't it great?!?"
@atillakayrak4293
@atillakayrak4293 2 жыл бұрын
It's because there is a mutex to have thread safety with cin and cout in c++. You can disable it. And Python is monothreaded so there is no mutex needed.
@harshitdubey2340
@harshitdubey2340 2 жыл бұрын
DIVIDED BY PYTHON AND C++ , UNITED BY C.
@Raspredval1337
@Raspredval1337 2 жыл бұрын
-O3 enables some aggressive optimisations and TRIES to vectorize it, but, since the user didn't specify the vectorization options available to the compiler, it didn't vectorize it. Just pass -msse or -mavx to the compiler and you'd see the difference. Plus std::iostreams are kinda slow, should've used the cstdio primitives.
@chri-k
@chri-k 2 жыл бұрын
It might be purely because iostrams are slow. I looked at the disassembly of some C code i wrote that is of the same function but uses read() directly, it did actually vectorize something - it doubled the instruction count and there is vector register manipulation everywhere, but this had almost no effect on performance compared to an unoptimized version; however both were as fast as python, as a speed about twice that of the optimized C++ version. i would assume the same happens to the C++ code if you remove iostreams, although i did not examine that for some reason.
@AlFredo-sx2yy
@AlFredo-sx2yy 2 жыл бұрын
C++ streams are slow because they are forced to wait to sync with C's stdio by default. There's a parameter in std::ios_base that you can change to disable sync with C stdio which makes C++'s streams much faster. Obviously they are still slower than raw stdio because streams internally make a bunch of checks to convert the data that you're inputting/outputting to and from the streams.
@___Gustav
@___Gustav 2 жыл бұрын
@@AlFredo-sx2yy just paste std::cin.tie(0); std::cout.tie(0); std::io_base::sync_with_stdio(false); before doing any IO and cin and cout should be same speed as scanf and printf (iirc cin and cout are even faster than scanf and prinf with this)
@AlFredo-sx2yy
@AlFredo-sx2yy 2 жыл бұрын
@@___Gustav yep, those are the settings i talked about in my comment
@makadoxvsdk9530
@makadoxvsdk9530 2 жыл бұрын
The only thing I was scared was the word "phtyon"
@SunPodder
@SunPodder 2 жыл бұрын
That doesn't mean C++ is slower. That means you suck at algorithms 😏
@MrGencyExit64
@MrGencyExit64 2 жыл бұрын
Also at spelling -- 1:10
@_Tao__
@_Tao__ 2 жыл бұрын
And you suck at jokes lol
@MrSmith-rg6hi
@MrSmith-rg6hi 2 жыл бұрын
"Python" written completly wrong in the end ;) Love it....
@pshr2447
@pshr2447 2 жыл бұрын
it's probably because sys module is implemented with cpython, so you're essentially comparing c against c++ otherwise looping in python is extremely slow
@dani3645
@dani3645 2 жыл бұрын
It's not that, actually. The looping is still happening in python. Tore Braathen's explanation (I/O is the bottleneck here) is the more accurate one.
@AlFredo-sx2yy
@AlFredo-sx2yy 2 жыл бұрын
C++ IO is slow by default because C++ streams are programmed to sync with C's IO. There's a parameter in std::ios_base that you can use to disable that sync and that would make any IO operation in C++ much faster.
@pshr2447
@pshr2447 2 жыл бұрын
@@dani3645 oh i see thanks for sharing
@keithskinner6188
@keithskinner6188 2 жыл бұрын
@@AlFredo-sx2yy ♥️also getline returns std::string here and then is discarded
@TheLiverX
@TheLiverX 9 ай бұрын
By the time python reads the input buffered in memory, C++ has done 700 000 stdin read calls of arbitrary length. It's like reaching for a shelf in the same room and walking a few blocks to get a book.
@omega_no_commentary
@omega_no_commentary 2 жыл бұрын
The file was a paid actor
@nsaurabh25
@nsaurabh25 2 жыл бұрын
C++ is the most powerful language. All the major softwares, tesla, spaceX, ISS are still written on it.
@torarinvik4920
@torarinvik4920 Жыл бұрын
Python isn't that much different from C++ in some ways. I have learned some Swift, C,C++, Rust, Python, Nim and probably more from the C/C++ family of language as well as several more from other families of languages. All the languages from the "C/Algol family" are much the same. They are all imperative languages with a similar syntax. Languages like Haskell and Prolog are totally different, they don't feel like your programming in the same way and you need to convert the programs from an imperative train of thought to a declarative logic. The biggest difference between Python and C++ is that Python is interpreted and doesn't have the duality of compile time vs runtime. I cannot comprehend how people can use dynamic languages for big projects, I get nervous just thinking about it. Python is great for engineers and data scientist and using jupyter notebook is an incredible tool where you can do things in a way that maybe wasn't feasible before. But actually creating application software in it sounds almost irresponsible unless your writing millions of unit tests(and some do).
@bentos117
@bentos117 9 ай бұрын
depends on the project... python developers are cheaper, also it IS quicker to build something in python... then, it is also possible to design things wrong - and for c++ that could be costlier... no programming language prevents errors from happening, in C++ they can be harder to diagnose and fix than in python
@thenasiudk1337
@thenasiudk1337 9 ай бұрын
I've done this by accident when working on college project, my nerd friend lost his shit when he saw my absolute disaster of a code I've created. He literally screamed "NO WHAT ARE YOU DOING?!?"
@antonmartynenko4171
@antonmartynenko4171 2 жыл бұрын
This video is exactly the reason why I will always get paid more than pythonists.
@RealLostmatter
@RealLostmatter 6 ай бұрын
If anyones confused on why python is faster in this situation is due to the fact that python *is* actually faster than c++ when it comes to numbers and counting, any other situation c++ is faster
@DanielQRT
@DanielQRT 5 ай бұрын
no.
@binary_gaming113
@binary_gaming113 2 жыл бұрын
Try it with std::ios_base::sync_with_stdio(false) at the beginning of the main function
@McToaster-o1k
@McToaster-o1k 2 жыл бұрын
Q: What is the difference between pseudo-code and python? A: .py
@duccie
@duccie 2 жыл бұрын
clearly the problem is you used namespace std
@invisibledude7783
@invisibledude7783 2 ай бұрын
This is like comparing a farmer truck to the Ferrari and see which one will carry more weight
@muhammadusmannaeem609
@muhammadusmannaeem609 2 жыл бұрын
Haha nice one. Well on a serious note this is just simple print operation and a counter. When writing more complex things Python provides libraries which are generally slower than C++. If you implement the same thing in Python yourself you can get equal speed etc. But Python is preferred because of its easy syntax and support of a LOT of libraries which allow you to do anything rather than implementing them. (C++ have as well, but Python has more)
@vladimir0rus
@vladimir0rus 10 күн бұрын
That's the exact reason why any simple app now is bigger and slower that an entire OS back in 1995.
@prodbytukoo
@prodbytukoo 2 жыл бұрын
The problem are IO operations which are not meant to be used on production by any means. In any real C++ application (Most probably a multimedia system) console outs and console ins are a big no no. In audio programming for example, there is a constant loop through really small slices which together makes frequencies and therefore sound. In the loop you should never use a cout or cin for debugging because it will damage completely the audio output.
@basedbuddha777
@basedbuddha777 Жыл бұрын
Holy fucking shit the misspelling at the end made me laugh way too hard.
@themarauders15
@themarauders15 2 жыл бұрын
That scared the shit out of me.
@peconi47
@peconi47 5 ай бұрын
how to scare a c++ programmer? take their thigh high socks away
@whamer100
@whamer100 2 жыл бұрын
you arent scaring me, you're just making me concerned with that inefficient c++ code
@thelemoid
@thelemoid 2 жыл бұрын
Truth. I suspect that the c++ was just slower because of the branching from the if statement
@whamer100
@whamer100 2 жыл бұрын
​@@thelemoid not even that, the fact alone that a std::string is being used is enough for me to be annoyed at this. std::string classes are mutable, while the strings in python are immutable (reminder that python is backed by c). trying to argue that python is faster than c++ while not even using the same data types. after rewriting the C++ code to read into a char buffer, i get pretty much the exact same time as python (which is exactly to be expected since python is also just doing c stuff under the hood) if i rewrite to use buffered input, i could definitely improve the speed by a lot more but im lazy right now lmao
@N....
@N.... 2 жыл бұрын
Look up the C++ function "sync_with_stdio" - this video is a classic beginner mistake by forgetting to call this function :p
@chri-k
@chri-k 2 жыл бұрын
my benchmarks: py3: ~0.490 c++: ~0.800 I/O operations are very long, that does not depend on the language, and the times should thus be about the same. However python has I/O code more optimized than this C program written in 5 seconds, using less I/O operations thus the faster time. Optimizinf the C++ code by ditching C++ because i can’t write it, and rewriting it in C reading chunks of 2048, i can get it down to 0.465, which beats python ever so slightly, probably due to load times or something.
@etopowertwon
@etopowertwon Жыл бұрын
That's the shitty part about C++. Reading file line by line is very common idea. To do it efficiently you need to do lots of steps. In fact in C++ I avoid them entirely and read whole file. And only ~5 years ago c++ got normal api for telling file sizes. No, rewiding file to the end, using tellg, rewinding to beginning is not normal.
@ItsCOMMANDer_
@ItsCOMMANDer_ 9 ай бұрын
I think it would be faster to allocate 1 chunk of memory for the file
@chri-k
@chri-k 9 ай бұрын
@@ItsCOMMANDer_ That could be faster, but memory allocations are quite fast on modern systems, and by doing that you lose the ability to re-use the code for reading from files on unknown length. It, as almost always, depends on context
@ItsCOMMANDer_
@ItsCOMMANDer_ 9 ай бұрын
@@chri-k you can do something like a function, wich takes an FILE object, uses fseek to go to the end of the file, say at what character it is (e.G. 25 charcater is theast so the contwnt of the file is 25 bytes. (not including \0 ) long and then just allocatge memory for that amount and use fread to read the entire file.
@Olodus
@Olodus 5 ай бұрын
Fun video. Nothing against some lang-rage-bait every now and again. Would have been interesting if you had a second part (or separate video) where you dug deeper and understood the reason the result was what it was. Look deeper into Pythons file implementation for example (since I take it you probably prefer digging there rather than in C++'s std).
@Creekererer
@Creekererer 2 жыл бұрын
Потому что ввод надо считывать с помошью буфера. В питоне это уже всё оптимизировано
@nabir14
@nabir14 Жыл бұрын
Jokes aside C++ code can be improved to run faster and python has the lack of enough curly braces so it gets confusing where c++ its more well organized and easily understandable
@ghgltggamer
@ghgltggamer Жыл бұрын
Same here bro 😢
@hikkarion
@hikkarion 2 жыл бұрын
It is pointless to compare lang speeds with io operations cause it is system operations and from language you just call same system functions
@Pineapple0
@Pineapple0 2 жыл бұрын
cope.
@sayven
@sayven 2 жыл бұрын
@@Pineapple0 nah, facts
@cpK054L
@cpK054L 2 жыл бұрын
@@Pineapple0 printf is notoriously slow and many devs have warned against it. Better to compare micropython to C using the print function via UART
@ljuddykare
@ljuddykare 6 ай бұрын
Ask c++ dev to link a library they didn't write.
@mustafashah373
@mustafashah373 2 жыл бұрын
Tell me you skipped your data structure classes during pandemic without telling me that you skipped your classes. 😄
@benloud8740
@benloud8740 2 жыл бұрын
This an I/O efficiency issue. Nothing to do with data structures
@arshiaaghaei
@arshiaaghaei 8 ай бұрын
@@benloud8740Not if you knew iostream is slow and there's another way for this
@johanwatherman5362
@johanwatherman5362 2 жыл бұрын
Fun fact: Rust code will be slower by default in IO because IO in Rust are not buffered (you van do it but it's different behavior than other popular languages std lib).
@smorales9492
@smorales9492 2 жыл бұрын
I love both languages. Python bc it's easy to make a project, and C++ bc I feel like a pro programmer when programming in it. But Im seeing that the purpose of this video actually worked, there are so many C++ devs scared in comments. Including me
@georgebazerashvili9250
@georgebazerashvili9250 2 жыл бұрын
That should be called how to get c++ developer angry and deal emotional damage :D
@Temari_Virus
@Temari_Virus 2 жыл бұрын
The thing that scares me about python is not so much the performance (not everything needs to be lightning fast), but rather the lack of curly braces and static typing which can easily get messy and confusing if you're not careful
@sifagayev7793
@sifagayev7793 2 жыл бұрын
I disagree. Most interesting projects benefit from speed/efficiency gains.
@tuluppampam
@tuluppampam 2 жыл бұрын
@@sifagayev7793 I think you didn't understand the comment or replied to the wrong one
@sifagayev7793
@sifagayev7793 2 жыл бұрын
@@tuluppampam yeah, odd. It's not even an edited comment. oh well.
@vladimir0rus
@vladimir0rus 10 күн бұрын
This is a perfect example showing that pythonists doesn't know how the system works. If you need to count lines in a file you can memory map it and count all ' '. Or read the file by big chunks. In C/C++ you can check byte sequence for ' ' by 8 at a time (or even by 64 if use avx512), so the only limiting factor will be the disk speed.
@SohnoZ
@SohnoZ 2 жыл бұрын
To solve this riddle: Ptyhon has many library functions that are natively coded in C and quite optimized (using low level system calls and stuff) As long as you use those packages, you will probably beat most languages (because C is very fast, if optimized)
@MulmVerbot
@MulmVerbot 4 ай бұрын
This scared me as a Python Dev...
@rimantasri4578
@rimantasri4578 2 жыл бұрын
I just learn phtyon and I not understand why ptrin() function doesn't working?
@israelsanchezcabrera4735
@israelsanchezcabrera4735 6 ай бұрын
ptrin? it's print
@yoorface4680
@yoorface4680 5 ай бұрын
@@israelsanchezcabrera4735 XD
@visible9770
@visible9770 2 жыл бұрын
When an endeavour os user sees his fellow endeavouros user 👀
@noertri618
@noertri618 2 жыл бұрын
Nah just ask them try to print "b" + "r"*8
@eliasdargham
@eliasdargham 5 ай бұрын
Good, now multiply a 10x10 matrix without using numpy.
@SimGunther
@SimGunther 2 жыл бұрын
Even scarier: show them C-style data oriented code that's faster than their fancy 500 level hierarchy of classes and templates to get the job done
@directx872
@directx872 2 жыл бұрын
Delusional. Practically all abstraction except polymorphism are resolved at compile time. C has a very clean and understandable look but C++ is more powerful, it's just the truth. Try benching any code.
@torshepherd9334
@torshepherd9334 2 жыл бұрын
Except that templates are only a compile-time cost? The actual generated code can be the same? You're not as clever as you think
@SimGunther
@SimGunther 2 жыл бұрын
@@torshepherd9334 But think of how easy the code would be to read and debug without those stupid templates!
@TheDragShot
@TheDragShot 2 жыл бұрын
@@torshepherd9334 templates are such a nice convenience when it comes to writing code, but a major pain in the rear when it comes to reading it as an outsider. I'd rather not touch those things beyond aliasing composite types, and maybe one or two inliners.
@davidwuhrer6704
@davidwuhrer6704 2 жыл бұрын
500 level class hierarchy is more a Java thing, not really a C++ thing.
@petertuxen4930
@petertuxen4930 Жыл бұрын
Comparing c++ and python in what python is good at, is a bad comparison unless you try it the other way around. Compare Python and c++ at what c++ is good at, and you will find that c++ is faster by a factor of about 150 times. Besides python is super messy and a breading ground for very bad code. Not scared.
@sergant445
@sergant445 6 ай бұрын
python so slow
@charl3282
@charl3282 2 жыл бұрын
tfw u have a memory leak and u need 2 find which pointer u didn’t delete
@BlazeYT_
@BlazeYT_ 2 жыл бұрын
For me, the weird thing is that it's a bit complicated and hard for me to know python but for some reason I understand c++.. I don't know why but that just happened Although I actually managed to make turtle python art only circles and lines but in C++ basically just made my custom header file so instead using cout, I use print.. (I like to see the world burn slowly and painfully)
@draken2037
@draken2037 Жыл бұрын
same bro
@ulcuber
@ulcuber 6 ай бұрын
Only python programmers will believe in this. C++ programmers will write equivalent code to test it
@chb286
@chb286 3 ай бұрын
Why did the Python developer cross the road? To avoid a "Segmentation Fault" in C++ land-they prefer their crashes to be more graceful!
@deilusi
@deilusi 2 жыл бұрын
let me hit it this way, its all about making sure you process faster than data is incoming. If python can do it, why complicate your life with low level code? 2 biggest strengths of python are a) simplicity b) can load c++ if needed. This way you avoid spending time on parts that will be used once per month and can be slow, and you have a lot of time to double down on this one function that you will call each second. if you KISS stuff that don't need to be complex, you cut down on future work maintaining it and possible bugs. Both cost you dev time. sometimes its better to have slower program, as throwing another VM on the problem is like 2$ per hour, and having another dev on the issue is over 30$ per hour.
@bentos117
@bentos117 9 ай бұрын
exactly, those are just tools... python is excellent for prototyping almost anything, c++ is for low-level control...
@igorordecha
@igorordecha 2 жыл бұрын
Python is just a working interpreter for pseudocode and it's just the beginning of its advantages.
@rafaelcaro7402
@rafaelcaro7402 Жыл бұрын
I did a C++ program that simulate the result of throwing a dice 10 million times. Then, I did the same algorithm in Python. C++ did it in like 0,5 secs, while Python lasted a few seconds.
@JustBR0
@JustBR0 2 жыл бұрын
Python programmers : Thanks 🥲🥲 C programmers : Outside : Scary?! Us?! 😂 Yt comment : Write whole c history to prove they are not scary Java programmers : You guys even write code to write 1 million lines. It is more easy for us to write those 1 million lines.
@huydezus5633
@huydezus5633 3 ай бұрын
With 4years coding C++, I can confirm that this is terrified
@valizeth4073
@valizeth4073 4 ай бұрын
More like how to scare people who don't know C++:
@ArcanaChandra
@ArcanaChandra 20 күн бұрын
How about.... 1 error, 1 warning *fixing 3 error, 22 warning scared?💀
@nerdastics3987
@nerdastics3987 2 ай бұрын
well, to be fair, it really depends on the circumstances, in most cases and larger projects, low level languages such as c/c++ or even rust will be much faster than many programming languages. But in smaller cases such as a dedicated learning environment, stuff like python and lua can be faster. Python is a legitimate tool for programming, but its an interpreted language that sits over a C layer that then has to be converted to machine code. With lower level languages, there's only 1 layer. It's kinda like running any windows program on linux with wine, its just gonna be slightly slower in the bigger scale stuff.
@vponnejork5831
@vponnejork5831 2 жыл бұрын
Ur channels gonna blow up. I was never wrong and never will be.
@benjamin7853
@benjamin7853 2 жыл бұрын
paradox : the python interpreter is written in C.
@yevheniiboiko8397
@yevheniiboiko8397 2 жыл бұрын
No one of existing languages will not completely use instead of C\C++. Even if output operation have a little bit more ms than (in this case of) python.
@0xABADCAFE
@0xABADCAFE 2 жыл бұрын
Tries to show language X is faster than language Y on an IO bound operation without any understanding of how the IO is being handled in either language. I'm sure everyone is quaking in their boots over it.
@tankpillow
@tankpillow 8 ай бұрын
When a python “programmer” tries to use a real language…
@kdiversoncrossover_073
@kdiversoncrossover_073 3 ай бұрын
i was making a project in c++ and python, it was an ai face detector that detects ur face, the python ran at about 0.05 - 0.1 seconds per frame, while the c++ one ran at 0.07-0.15. I made some optimisations to my c++ cod by using multi threading and stuff, now it runs at 0.01 seconds per frame which is like 80 frames per second. Thats why i can relate to this
@TheEvertw
@TheEvertw 9 ай бұрын
Nice one! I love to see the C++ jocks squirm to defend their pet language... No-one is arguing that Python is faster than C++ in most cases. But this does illustrate how Python is easier to program in than C++. Anyone else who found the Python code much easier to read? And for most use cases, Python is plenty fast enough.
Programmers' Struggle...
8:20
Virbox
Рет қаралды 6 М.
I made the same game in Assembly, C and C++
4:20
Nathan Baggs
Рет қаралды 782 М.
兔子姐姐最终逃走了吗?#小丑#兔子警官#家庭
00:58
小蚂蚁和小宇宙
Рет қаралды 15 МЛН
ЗНАЛИ? ТОЛЬКО ОАЭ 🤫
00:13
Сам себе сушист
Рет қаралды 3,9 МЛН
Perfect Pitch Challenge? Easy! 🎤😎| Free Fire Official
00:13
Garena Free Fire Global
Рет қаралды 41 МЛН
СОБАКА И  ТРИ ТАБАЛАПКИ Ч.2 #shorts
00:33
INNA SERG
Рет қаралды 1,5 МЛН
Linux Desktop Slander (WM/DE)
2:14
Virbox
Рет қаралды 58 М.
Programming Languages Slander
1:42
Virbox
Рет қаралды 36 М.
Python vs C++ Speed Comparison
1:04
The Builder
Рет қаралды 2,2 МЛН
C++ Developer Learns Python
9:26
PolyMars
Рет қаралды 2,7 МЛН
Roblox Has A HUGE AI Problem.
13:32
roblox_dude993
Рет қаралды 219 М.
How C++ took a turn for the worse
5:03
Code Persist
Рет қаралды 319 М.
Reacting to Controversial Opinions of Software Engineers
9:18
Fireship
Рет қаралды 2,1 МЛН
computers suck at division (a painful discovery)
5:09
Low Level
Рет қаралды 1,7 МЛН
Python As Fast as Possible - Learn Python in ~75 Minutes
1:19:41
Tech With Tim
Рет қаралды 1,8 МЛН
Building a REAL pawn that transforms into a queen (automatically)
14:12
Works By Design
Рет қаралды 474 М.
兔子姐姐最终逃走了吗?#小丑#兔子警官#家庭
00:58
小蚂蚁和小宇宙
Рет қаралды 15 МЛН