how to make gifs smaller in python code example
Example 1: how to make fizzbuzz in python
for x in range(100):
output = ""
if x % 3 == 0:
output += "Fizz"
if x % 5 == 0:
output += "Buzz"
print(output)
Example 2: make large 3d plot in python
# For bigger plot size
fig = plt.figure(figsize=(12,10))
# For bigger markers
ax.scatter(data.FAC1_1, data.FAC2_1, data.FAC3_1, s=500, c='r', marker='o')