pilot icon indicating copy to clipboard operation
pilot copied to clipboard

进入编程世界的第一课

Results 102 pilot issues
Sort by recently updated
recently updated
newest added

![image](https://user-images.githubusercontent.com/66456065/88298352-a3010280-cd33-11ea-8e07-f1af40043a43.png)

![image](https://user-images.githubusercontent.com/50642180/87512270-481f3980-c6a9-11ea-84d2-6b8380e64355.png) 显示: Command 'Instant Markdown: Open Browser' resulted in an error (command 'instantmarkdown.openBrowser' not found) 怎么才能让它显示出 预览效果 来呢?

![image](https://user-images.githubusercontent.com/50642180/87842860-55733880-c8e2-11ea-86cc-3c5460dff569.png)

network issue

![image](https://user-images.githubusercontent.com/66456065/87683272-6f622d80-c7b3-11ea-90d4-7eb4ba2615ea.png)

打开下载的作业,直接就是nteract打开的,就在里面作业了,中文输入法模式输入type(42),报错 句法错误,在这个标识符不存在的字母?! 哪里出问题了呢 File "", line 1 type(42) ^ SyntaxError: invalid character in identifier 截图一直传不上去呢

老师,我用from math import sqrt 执行以后没反应,还请您能解答下。 ![image](https://user-images.githubusercontent.com/66421372/87495294-9883a080-c683-11ea-98df-2eacc14445ae.png)

a = 42 if n != 0: a = a / n --------------------------------------------------------------------------- NameError Traceback (most recent call last) in 1 a = 42 ----> 2 if n != 0:...

*while True: try: x = int(input('Please enter a number: ')) break except ValueError: print('Not a valid number. Try again...') print('Your number is:', x) Please enter a number: 7