From stunning images to working code to full-length videos — explore 12 creative categories and see exactly how people are using AI to create incredible things.
See what a single sentence can create.
"a golden retriever astronaut floating in space, Earth visible behind, Pixar style"
import requests, smtplib
from bs4 import BeautifulSoup
def scrape_prices(urls):
prices = {}
for url in urls:
soup = BeautifulSoup(
requests.get(url).text, "html.parser"
)
name = soup.select_one(".product-title").text
price = soup.select_one(".price").text
prices[name] = price
return prices
def send_email(prices):
body = "\n".join(
f"{k}: {v}" for k, v in prices.items()
)
with smtplib.SMTP("smtp.gmail.com", 587) as s:
s.starttls()
s.login(EMAIL, PASSWORD)
s.sendmail(EMAIL, TO, body)"create a Python script that scrapes product prices and sends a daily email summary"
"cinematic drone shot over a foggy forest at sunrise, camera slowly rising above the treeline"
Pick a category that excites you. Each one is packed with tutorials showing real prompts and real outputs.
But most people have no idea what it can actually do. They've heard of ChatGPT, maybe tried it once, and moved on.
Meanwhile, a small group of people are using AI to create movies, build businesses, make music, write code, and design products — all from a text box.
We built promptutorial to close that gap. Every tutorial shows you the exact prompt, the exact tool, and the exact output — so you can do it too.
Free to join. 7 tutorials from 6 creators. Zero experience required.
Get Started Free