Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
Something strange solution in Clear category for I Love Python! by samatdav02
def i_love_python():
"""
I love Python. I will tell you why. Or rather show.
LOOK AT THIS SHIT! JUST HELLO WORLD ON C++!!!!:
#include
#include
using namespace std;
int main()
{
cout << "Hello world!" << endl;
system("pause");
return 0;
}
OK. LOOK AT JAVA:
class HelloWorld {
public static void main(String[] args) {
System.out.println("Hello World!");
}
}
And now on Python:
print("Hello World!")
See the difference?)
(No, I love C ++ and Java, and other languages too
(ass burned when I first started learning to program),
but Python <3, simple, understandable and concise)
>>>(one more task in order to be)<<<
"""
return "I love Python!"
July 25, 2019
Comments: