Untitled

 avatar
unknown
plain_text
a year ago
709 B
3
Indexable
# Import necessary libraries
import matplotlib.pyplot as plt
import matplotlib.image as mpimg

# Load the Wakanda character image
wakanda = mpimg.imread('https://i.imgur.com/7JQv1jR.png')

# Load the Indonesian flag image
indonesia = mpimg.imread('https://i.imgur.com/5zJZvYF.png')

# Create a figure with two subplots
fig, (ax1, ax2) = plt.subplots(1, 2, figsize=(10, 5))

# Plot the Wakanda character image
ax1.imshow(wakanda)
ax1.axis('off')

# Plot the Indonesian flag image
ax2.imshow(indonesia)
ax2.axis('off')

# Add the slogan to the Wakanda character image
fig.text(0.5, 0.05, 'Wakanda No More, Indonesia Forever', ha='center', fontsize=14)

# Display the figure
plt.show()
Editor is loading...
Leave a Comment