Skip to content

Commit 4036239

Browse files
committed
Use %HomePath% instead of C:\Users\<your_name>
This is the windows version of a7f5e56. By using a variable users can copy paste and don't have to figure out their username.
1 parent 87495e4 commit 4036239

File tree

13 files changed

+14
-14
lines changed

13 files changed

+14
-14
lines changed

cs/python_introduction/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -531,7 +531,7 @@ $ cd ~/Desktop
531531
A na Windows to bude vypadat takto:
532532

533533
```
534-
> cd C:\Users\<your_name>\Desktop
534+
> cd %HomePath%\Desktop
535535
```
536536

537537
Pokud nevíš jak dál, stačí požádat o pomoc kouče.

en/python_introduction/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -579,7 +579,7 @@ Now we need to save the file and give it a descriptive name. Let's call the file
579579
> **Note** You should notice one of the coolest thing about code editors: colors! In the Python console, everything was the same color; now you should see that the `print` function is a different color from the string. This is called "syntax highlighting", and it's a really useful feature when coding. The color of things will give you hints, such as unclosed strings or a typo in a keyword name (like the `def` in a function, which we'll see below). This is one of the reasons we use a code editor. :)
580580
581581

582-
With the file saved, it's time to run it! Using the skills you've learned in the command line section, use the terminal to **change directories** to the desktop. (**Note**: Replace `<your_name>` including the `<` and `>` with your user name.)
582+
With the file saved, it's time to run it! Using the skills you've learned in the command line section, use the terminal to **change directories** to the desktop.
583583

584584
On a Mac, the command will look something like this:
585585

@@ -599,7 +599,7 @@ And on Windows, it will be like this:
599599

600600
{% filename %}command-line{% endfilename %}
601601
```
602-
> cd C:\Users\<your_name>\Desktop
602+
> cd %HomePath%\Desktop
603603
```
604604

605605
If you get stuck, just ask for help.

es/python_introduction/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -474,7 +474,7 @@ En Linux, va a ser así (la palabra "Desktop" puede estar traducida a tu idioma)
474474

475475
Y en Windows, será así:
476476

477-
cd C:\Users\<your_name>\Desktop
477+
cd %HomePath%\Desktop
478478

479479

480480
Si te quedas atascada, sólo pide ayuda.

fr/python_introduction/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -529,7 +529,7 @@ Sous Linux, comme ça (il se peut que le mot Bureau soit dans une autre langue)
529529

530530
Et sous Windows, ce sera comme ça :
531531

532-
> cd C:\Users\<your_name>\Desktop
532+
> cd %HomePath%\Desktop
533533

534534

535535
Si vous êtes bloquée, n'hésitez pas à appeler à l'aide.

hu/python_introduction/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -487,7 +487,7 @@ Linuxon így (A "Desktop" lehet, hogy le van fordítva a te nyelvedre):
487487

488488
És Windowson így néz ki:
489489

490-
> cd C:\Users\<your_name>\Desktop
490+
> cd %HomePath%\Desktop
491491

492492

493493
Ha megakadtál volna, kérj nyugodtan segítséget.

it/python_introduction/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -489,7 +489,7 @@ Su Linux, sarà come questo (la parola "Desktop" potrebbe essere tradotta nella
489489

490490
E su windows, sara come questo:
491491

492-
> cd C:\Users\<your_name>\Desktop
492+
> cd %HomePath%\Desktop
493493

494494

495495
Se rimani bloccata, chiedi aiuto.

ko/python_introduction/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -493,7 +493,7 @@ Boolean도 변수로 사용할 수도 있습니다! 다음을 보세요. :
493493

494494
윈도우라면 다음과 같이 하세요. :
495495

496-
> cd C:\Users\<your_name>\Desktop
496+
> cd %HomePath%\Desktop
497497

498498

499499
혹시 하다가 막히면, 코치에게 도움을 요청하세요.

pl/python_introduction/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -499,7 +499,7 @@ W Linuksie będzie tak (słowo "Desktop" może zostać przetłumaczone na polski
499499

500500
A w systemie Windows będzie to wyglądać tak:
501501

502-
> cd C:\Users\<your_name>\Desktop
502+
> cd %HomePath%\Desktop
503503

504504

505505
Jeżeli coś jest dla Ciebie niejasne, nie wahaj się poprosić o pomoc.

pt/python_introduction/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -469,7 +469,7 @@ No Linux, será assim (a palavra "Desktop" pode ser traduzido para seu idioma):
469469

470470
E no windows, vai ser assim:
471471

472-
cd C:\Users\<your_name>\Desktop
472+
cd %HomePath%\Desktop
473473

474474

475475
Se você ficar preso, só pedir ajuda.

ru/python_introduction/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -487,7 +487,7 @@ print('Hello, Django girls!')
487487

488488
И для windows:
489489

490-
> cd C:\Users\<your_name>\Desktop
490+
> cd %HomePath%\Desktop
491491

492492

493493
Если возникли проблемы - просто обратись за помощью.

0 commit comments

Comments
 (0)