'Can I create android games with pygame? [duplicate]

Can I create an Android game with PyGame? Let's say I have already created some kind of simple game and it is working well on PC. Can I make a .apk file?

import pygame, sys from pygame.locals import

pygame.init()

pygame.display.set_mode(500, 400)
pygame.display.set_caption('Flappy Bird')


Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source