Word Cloud

Crypto Blockchain Terms

Cryptocurrency and blockchain vocabulary

Output
Crypto Blockchain Terms
Python
import matplotlib.pyplot as plt
from wordcloud import WordCloud

text = """Bitcoin Ethereum Blockchain Cryptocurrency DeFi NFT Web3
Smart Contracts Solidity Wallet MetaMask Ledger Hardware Wallet
Mining Staking Proof of Work Proof of Stake Consensus Mechanism
Token Coin Altcoin Stablecoin USDT USDC DAI Liquidity Pool AMM
DEX CEX Uniswap Aave Compound Yield Farming Gas Fees Transaction
DAO Governance Voting Token Distribution Airdrop ICO IDO Presale
Layer 2 Rollups ZK Proof Scalability Interoperability Bridge"""

def neon_multi(word, font_size, position, orientation, random_state=None, **kwargs):
    colors = ['#F5B027', '#27D3F5', '#6CF527', '#F5276C', '#4927F5']
    return colors[hash(word) % len(colors)]

wordcloud = WordCloud(
    width=1000, height=600,
    background_color='#0a0a0f',
    color_func=neon_multi,
    max_words=75,
    max_font_size=110,
    min_font_size=12,
    relative_scaling=0.5
).generate(text)

fig, ax = plt.subplots(figsize=(10, 6), facecolor='#0a0a0f')
ax.imshow(wordcloud, interpolation='bilinear')
ax.axis('off')
ax.set_title('Crypto & Blockchain', color='#F5B027', fontsize=16, fontweight='bold', pad=10)
plt.tight_layout(pad=1)
plt.show()
Library

Matplotlib

Category

Text Visualization

Did this help you?

Support PyLucid to keep it free & growing

Support