Làm cách nào chạy một chương trình được viết bằng Python vậy mọi người ?
Hãy nhập câu hỏi của bạn vào đây, nếu là tài khoản VIP, bạn sẽ được ưu tiên trả lời.
Chương tình dưới đây giúp xóa file: New folder
>>> os.listdir()
['20200924.py','202000925.txt','code','my_python','my_test','new_folder']
>>> os.remove('20200925.txt')
>>> os.listdir()
['20200924.py','code','my_python','my_test','new_folder']
>>> os.rmdir('new_folder')
>>> os.listdir()
['20200924.py','code','my_python','my_test']
[a,b]=input().split()
print(a,b)
Cho a,b rồi input từng cái rồi chuyển từ a b thuộc string -> mảng rồi xuất màn hình kết quả a,b.
program Tim_So_Le_Chia_Het_Cho_3;
uses crt;
var
n, i, count: integer;
begin
clrscr;
write('Nhap vao mot so nguyen duong n: ');
readln(n);
writeln('Cac so le chia het cho 3 nho hon ', n, ' la: ');
count := 0;
for i := 1 to n do
begin
if (i mod 2 = 1) and (i mod 3 = 0) then
begin
writeln(i);
count := count + 1;
end;
end;
writeln('Co tat ca ', count, ' so le chia het cho 3');
readln;
end.
#include <bits/stdc++.h>
using namespace std;
long long x,n,i,dem1,dem2,t1,t2;
int main()
{
cin>>n;
t1=0;
t2=0;
dem1=0;
dem2=0;
for (i=1; i<=n; i++)
{
cin>>x;
if (x%2==0)
{
dem1++;
t1+=x;
}
else
{
dem2++;
t2+=x;
}
}
cout<<t1<<" "<<dem1<<endl;
cout<<t2<<" "<<dem2;
return 0;
}
Tìm một môi trường phát triển(IDE) có hỗ trợ Python, nhập code vào
Lưu ý:
phải có Python sẵn trong máy
link tải Python:
https://www.python.org/ftp/python/3.9.4/python-3.9.4-amd64.exe