![]() |
|
python chellenge - Printable Version +- Sinisterly (https://sinister.li) +-- Forum: Coding (https://sinister.li/Forum-Coding) +--- Forum: Python (https://sinister.li/Forum-Python) +--- Thread: python chellenge (/Thread-python-chellenge) |
python chellenge - __Black__Byte__ - 05-09-2020 i chellenge you to write helo world in a single line without writing print("hello world")
RE: python chellenge - mothered - 05-29-2020 (05-28-2020, 06:39 PM)sefefew Wrote: getattr(__import__("os"), "write")(1, "Hello world!\n") Source. RE: python chellenge - exspiravit - 06-03-2020 from os import system; system("echo hello world") RE: python chellenge - ritikasingh0019 - 06-26-2020 Python with Data Science Course. Python is a highly effective language, interpreted and object oriented language. RE: python chellenge - Stratus - 06-26-2020 This is why I like python. There's always a way to make it far more complicated than it needs to be lol RE: python chellenge - DedSpace - 07-27-2020 Code: from pprint import pprint; pprint("Hello, World!") |