Skip Navigation
Ollama - Local LLMs for everyone! @lemmy.world

Everyone: Deepseek R1 coding a basic python hello world!

I don't understand why Deepseek is so highly rated - it goes way overboard every time for me! Do I need to change the default temperature or some other model param?


give me a hello world python example

Here's a classic "Hello, World!" program in Python using different approaches:

 python
    
# Basic version (most common)
print("Hello, World!")

# Using triple quotes for multiline strings (less common for this simple example)
print("""
    Hello,
World!
""")

# Object-oriented style:
class HelloWorld:
    def __init__(self):
        self.message = "Hello, World!"
    
    def display(self):
        print(self.message)

hello_world = HelloWorld()
hello_world.display()

# Using a function and Unicode characters (optional challenge!)
def hello_world():
    print("H" "e" "l" "l" "o" ',' "\u0020\u0057" "o" * 3 + "!")

hello_world()

  

The simplest version is:

 python
    
print("Hello, World!")

  

This will output:

 
    
Hello, World!

  

To run this program:

  1. Save it as a file with .py extension (e.g., helloworld.py)
  2. Run in terminal/command prompt:
    • Windows: python helloworld.py
    • macOS/Linux: python3 helloworld.py

For educational purposes, here are some variations:

 python
    
# Using Unicode code points:
print("\u0048\u0065\u006c\u006c\u006f,\u0020\u0057\u006f\u0bytee\u006c\u0061")

# With error handling (advanced):
try:
    print("Hello, World!")
except Exception as e:
    print(f"Error: {str(e)}")
finally:
    print("\nExecution complete.")

  

All these examples will output the same string "Hello, World!" but demonstrate different Python features

2 comments