Please subscribe to the official Codeforces channel in Telegram via the link https://t.me/codeforces_official. ×

Embedding Python code in a C++ program

Revision en1, by slycelote, 2016-04-01 06:35:11

I'm sure most of you know that all mainstream C++ compilers support inline assembly language. But did you know that you can actually embed Python in a similar way?

Here, for instance, I implemented gcd function in Python simply because it's easier and shorter. The rest of the code is in C++: 17084249. (By the way, kudos to Codeforces for correct highlighting of both Python and C++ parts!)

I'm not sure if it can be useful at all, but I thought that it's fun to share. Keep in mind it doesn't work in all compilers though!

Tags python, c++

History

 
 
 
 
Revisions
 
 
  Rev. Lang. By When Δ Comment
en1 English slycelote 2016-04-01 06:35:11 581 Initial revision (published)