We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d7924bd commit f3b569fCopy full SHA for f3b569f
.github/workflows/python-app.yml
@@ -30,7 +30,10 @@ jobs:
30
run: |
31
cd programming_fundamentals/python_part_1
32
pip install -r requirements.txt
33
- python example2.py
+ echo "Anne Marie Janeene Anastasia Eileen" > names.txt
34
+ cat names.txt | while read -r line; do echo "$line" | grep -oP '(\S+)' | shuf -n $((RANDOM%2+1)) | paste -s -d' '; done < file.txt
35
+ cat file.txt
36
+ python example2.py Anne
37
- name: Test Programming Fundamentals Python Part 1 - ex3
38
39
0 commit comments