吾爱破解 - 52pojie.cn

 找回密码
 注册[Register]

QQ登录

只需一步,快速开始

查看: 1004|回复: 6
收起左侧

[已解决] 为啥as会报错了??

[复制链接]
weicheng 发表于 2021-3-30 00:09
main_大战外星人.py


# import sys
import  pygame
from Game_setting import Game_setting
from game_ship import Game_ship
from game_functions as gf

def play_game():
    pygame.init()
    ai_setting = Game_setting()
    screen =pygame.display.set_mode((ai_setting.game_screen_with,ai_setting.game_screen_height),0,32)
    pygame.display.set_caption('大战外星人游戏')

    background_color =(230,230,230)#设置背景色
    game_ship =Game_ship(screen)#创建一艘飞船

    while True:
        #监视键盘和鼠标事件
        ga.check_event()

        #让最近绘制的屏幕可见

        screen.fill(ai_setting.backgroud_color)
        game_ship.blitme()

        pygame.display.flip()

play_game()





game_functions.py

import sys
import pygame
def check_event():
    #响应按键和鼠标事件
    for event in pygame.event.get():
        if event.type== pygame.QUIT:
            sys.exit()





问题::为啥as会报错了??File "C:\Users\wiecheng\Desktop\python练习\pycharm\实例\大战外星人项目\main_大战外星人.py", line 5    from game_functions as gf                        ^SyntaxError: invalid syntax

发帖前要善用论坛搜索功能,那里可能会有你要找的答案或者已经有人发布过相同内容了,请勿重复发帖。

涛之雨 发表于 2021-3-30 00:25
import,from import和import as

第五行应该是import as
Jack2002 发表于 2021-3-30 00:49
第5行语法错误,你这么写试试:import game_functions as gf
167023ab 发表于 2021-3-30 08:45
应该是from xx import xx as xx这种格式,仔细审查就可以发现
djdl 发表于 2021-3-30 09:10
from导入某个模块指定部分,后面需要加上import。
 楼主| weicheng 发表于 2021-3-30 21:20
涛之雨 发表于 2021-3-30 00:25
import,from import和import as

第五行应该是import as

谢谢。。。。。
您需要登录后才可以回帖 登录 | 注册[Register]

本版积分规则

返回列表

RSS订阅|小黑屋|处罚记录|联系我们|吾爱破解 - LCG - LSG ( 京ICP备16042023号 | 京公网安备 11010502030087号 )

GMT+8, 2024-11-26 04:49

Powered by Discuz!

Copyright © 2001-2020, Tencent Cloud.

快速回复 返回顶部 返回列表